diff --git a/CONFIG/gtklock/config.ini b/CONFIG/gtklock/config.ini index ae7694d..aa97af7 100644 --- a/CONFIG/gtklock/config.ini +++ b/CONFIG/gtklock/config.ini @@ -1,6 +1,6 @@ [main] gtk-theme=Arc-Dark -time-format=%l:%M %p +time-format=%H:%M start-hidden=1 modules=userinfo-module;powerbar-module diff --git a/CONFIG/gtklock/style.css b/CONFIG/gtklock/style.css index 609800c..7711399 100644 --- a/CONFIG/gtklock/style.css +++ b/CONFIG/gtklock/style.css @@ -3,6 +3,7 @@ text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) } window { + background-image: url("EndeavourOS_Astronaut_SpaceWalk.png"); background-size: cover; background-repeat: no-repeat; background-position: center; diff --git a/endos.py b/endos.py index 6de4ad8..d0f9ace 100755 --- a/endos.py +++ b/endos.py @@ -386,13 +386,17 @@ def install_sway(overwrite: bool, reinstall: bool) -> None: for sub in [ "sway", "waybar", + "gtklock", "gtk-3.0", "mako", "fuzzel", "nwg-drawer", "xdg-desktop-portal-wlr", + "foot", ]: 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 helper_clone_foldercontents(CUSTOM_SRC / "CONFIG", CFG_TGT, "sway", overwrite) # custom waybar configs @@ -404,11 +408,6 @@ def install_sway(overwrite: bool, reinstall: bool) -> None: ".local/share/applications", 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: