endos.py include gtklock config

This commit is contained in:
Henrik Bakken
2025-11-17 20:18:53 +01:00
parent b16376854b
commit faeb82b6ff
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[main] [main]
gtk-theme=Arc-Dark gtk-theme=Arc-Dark
time-format=%l:%M %p time-format=%H:%M
start-hidden=1 start-hidden=1
modules=userinfo-module;powerbar-module modules=userinfo-module;powerbar-module
+1
View File
@@ -3,6 +3,7 @@
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8)
} }
window { window {
background-image: url("EndeavourOS_Astronaut_SpaceWalk.png");
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
+4 -5
View File
@@ -386,13 +386,17 @@ def install_sway(overwrite: bool, reinstall: bool) -> None:
for sub in [ for sub in [
"sway", "sway",
"waybar", "waybar",
"gtklock",
"gtk-3.0", "gtk-3.0",
"mako", "mako",
"fuzzel", "fuzzel",
"nwg-drawer", "nwg-drawer",
"xdg-desktop-portal-wlr", "xdg-desktop-portal-wlr",
"foot",
]: ]:
helper_clone_foldercontents(CFG_SRC, CFG_TGT, sub, overwrite) helper_clone_foldercontents(CFG_SRC, CFG_TGT, sub, overwrite)
helper_maybe_copy(CFG_SRC, CFG_TGT, "xdg-terminals.list", overwrite, symlink=True)
helper_maybe_copy(CFG_SRC, CFG_TGT, "mimeapps.list", overwrite, symlink=True)
# custom sway configs # custom sway configs
helper_clone_foldercontents(CUSTOM_SRC / "CONFIG", CFG_TGT, "sway", overwrite) helper_clone_foldercontents(CUSTOM_SRC / "CONFIG", CFG_TGT, "sway", overwrite)
# custom waybar configs # custom waybar configs
@@ -404,11 +408,6 @@ def install_sway(overwrite: bool, reinstall: bool) -> None:
".local/share/applications", ".local/share/applications",
overwrite, overwrite,
) )
# foot terminal
helper_clone_foldercontents(CFG_SRC, CFG_TGT, "foot", overwrite)
helper_maybe_copy(CFG_SRC, CFG_TGT, "xdg-terminals.list", overwrite, symlink=True)
# file associations
helper_maybe_copy(CFG_SRC, CFG_TGT, "mimeapps.list", overwrite, symlink=True)
def configure_pytools(overwrite: bool) -> None: def configure_pytools(overwrite: bool) -> None: