diff --git a/README.org b/README.org index 81e5e18..9c60432 100644 --- a/README.org +++ b/README.org @@ -9050,6 +9050,8 @@ exec dbus-run-session -- dwl -s '$HOME/.scripts/wayland-startup.sh --startup' #+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.scripts/wayland-startup.sh declare -a startup_array=(\ + # Status Bar + "$HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration) # Background Processes "/usr/libexec/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent "/usr/bin/kdeconnectd --replace" \ # KDE Connect Daemon @@ -9062,8 +9064,6 @@ declare -a startup_array=(\ "/usr/bin/shikane" \ # Display Setup "$HOME/.azotebg" \ # Wallpaper "/usr/bin/gammastep -x" \ # Reset gammastep night light - # Status Bar - "$HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration) # Tray Applications "/usr/bin/gammastep-indicator" \ # Gamamstep Night Light Indicator "/usr/bin/blueman-applet" \ # Bluetooth Manager Applet @@ -9077,6 +9077,8 @@ declare -a startup_array=(\ ) declare -a kill_startup_array=(\ + # Status Bar + "pkill waybar" \ # Background Processes "pkill polkit-gnome-au" \ "pkill kdeconnectd" \ @@ -9087,8 +9089,6 @@ declare -a kill_startup_array=(\ # Display / Compositor Setup "pkill shikane" \ "pkill gammastep" \ - # Status Bar - "pkill waybar" \ # Tray Applications "pkill gammastep-indic" \ "pkill blueman-applet" \ diff --git a/dwl/.config/dwl b/dwl/.config/dwl index 661bad1..07c8cc4 160000 --- a/dwl/.config/dwl +++ b/dwl/.config/dwl @@ -1 +1 @@ -Subproject commit 661bad187051baf7e577a9ecfb1649955a265d28 +Subproject commit 07c8cc46d312de8a7a65086707b693ccee25e45d diff --git a/dwl/.scripts/wayland-startup.sh b/dwl/.scripts/wayland-startup.sh index a7d69f3..e1b7e2d 100755 --- a/dwl/.scripts/wayland-startup.sh +++ b/dwl/.scripts/wayland-startup.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash declare -a startup_array=(\ + # Status Bar + "$HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration) # Background Processes "/usr/libexec/polkit-gnome-authentication-agent-1" \ # GNOME Polkit Authentication Agent "/usr/bin/kdeconnectd --replace" \ # KDE Connect Daemon @@ -12,8 +14,6 @@ declare -a startup_array=(\ "/usr/bin/shikane" \ # Display Setup "$HOME/.azotebg" \ # Wallpaper "/usr/bin/gammastep -x" \ # Reset gammastep night light - # Status Bar - "$HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration) # Tray Applications "/usr/bin/gammastep-indicator" \ # Gamamstep Night Light Indicator "/usr/bin/blueman-applet" \ # Bluetooth Manager Applet @@ -27,6 +27,8 @@ declare -a startup_array=(\ ) declare -a kill_startup_array=(\ + # Status Bar + "pkill waybar" \ # Background Processes "pkill polkit-gnome-au" \ "pkill kdeconnectd" \ @@ -37,8 +39,6 @@ declare -a kill_startup_array=(\ # Display / Compositor Setup "pkill shikane" \ "pkill gammastep" \ - # Status Bar - "pkill waybar" \ # Tray Applications "pkill gammastep-indic" \ "pkill blueman-applet" \