From f21ce059bc23a55138288672887bf50bc5cd2698 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 9 Dec 2023 10:47:45 +0900 Subject: [PATCH] Change behaviour of startup file. --- config/hypr/initial-boot.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh index 797f49c..7f58b9d 100755 --- a/config/hypr/initial-boot.sh +++ b/config/hypr/initial-boot.sh @@ -29,6 +29,10 @@ if [ ! -f ~/.config/hypr/.initial_startup_done ]; then "$scriptsDir/PywalSwww.sh" > /dev/null 2>&1 & "$scriptsDir/Refresh.sh" > /dev/null 2>&1 & + # initiate GTK dark mode and apply icon theme + gsettings set org.gnome.desktop.interface gtk-theme Tokyonight-Dark-B > /dev/null 2>&1 & + gsettings set org.gnome.desktop.interface icon-theme TokyoNight-SE > /dev/null 2>&1 & + # initiate the kb_layout (for some reason) waybar cant launch it "$scriptsDir/SwitchKeyboardLayout.sh" > /dev/null 2>&1 &