Update: Added KDE commands

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2024-09-21 18:20:26 +09:00
parent 6244970057
commit deaa26ab20
2 changed files with 22 additions and 1 deletions

View File

@ -108,6 +108,10 @@ class BuildBase:
inflate_bubble.make_bld_xfce(self.sbase, self.sarch[1:])
elif desktop_name == 'gfb':
inflate_bubble.make_bld_gnomeflashback(self.sbase, self.sarch[1:])
elif desktop_name == 'kde':
inflate_bubble.make_bld_kde(self.sbase, self.sarch[1:])
elif desktop_name == 'opb':
inflate_bubble.make_bld_openbox(self.sbase, self.sarch[1:])
logger.info(dir_current)
os.system(run_cmd)
logger.info(BUILD_COMPLETED)

View File

@ -77,7 +77,8 @@ setup_gfb_cmds = ('inflate_bubble.set_gfb',
setup_opb_cmds = ('inflate_bubble.set_opb',
'infra.open_box_configs',
)
setup_kde_cmds =('')
setup_kde_cmds =('inflate_bubble.set_kde',
'infra.kde_configs',')
setup_loaded_cmds = ('inflate_bubble.set_loaded',
'infra.loaded_configs',
@ -155,6 +156,22 @@ buildarm_opb_build = (shared_setup_cmds + setup_opb_cmds +
setup_fw_arm
)
#Open_box
build64_kde_build = (shared_setup_cmds + setup_kde_cmds +
setup_chroot_grub_64 + setup_binary_grub_64 +
setup_fw_64_32
)
build32_kde_build = (shared_setup_cmds + setup_kde_cmds +
setup_chroot_grub_32 + setup_binary_grub_32 +
setup_fw_64_32 + flag_specific_setup_32_cmds
)
buildarm_kde_build = (shared_setup_cmds + setup_opb_cmds +
setup_chroot_grub_arm + setup_binary_grub_arm +
setup_fw_arm
)
#Xfce_loaded
build64_loaded_build = (shared_setup_loaded_cmds + setup_loaded_cmds +
setup_chroot_grub_64 + setup_binary_grub_64 +