Adjust delays in wayland init and startup scripts
This commit is contained in:
125
README.org
125
README.org
@@ -8893,35 +8893,35 @@ declare -a kill_startup_array=(\
|
|||||||
)
|
)
|
||||||
|
|
||||||
declare -a delay_array=(\
|
declare -a delay_array=(\
|
||||||
"/usr/bin/gammastep-indicator" \ # Gammastep Night Light
|
"/usr/bin/gammastep-indicator" \ # Gammastep Night Light
|
||||||
"/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
|
"/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
|
||||||
"/usr/bin/nm-applet" \ # Network Manager Applet
|
"/usr/bin/nm-applet" \ # Network Manager Applet
|
||||||
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool
|
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool
|
||||||
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
|
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
|
||||||
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
||||||
"/usr/bin/openrgb" \ # OpenRGB
|
"/usr/bin/openrgb" \ # OpenRGB
|
||||||
"/usr/bin/syncthing-gtk" \ # Syncthing GTK
|
"/usr/bin/syncthing-gtk" \ # Syncthing GTK
|
||||||
"/usr/bin/nextcloud" \ # NextCloud Client
|
"/usr/bin/nextcloud" \ # NextCloud Client
|
||||||
"/usr/bin/nyrna" \ # Nyrna
|
"/usr/bin/nyrna" \ # Nyrna
|
||||||
"bash $HOME/.scripts/dunst.sh --on" \ # Dunst Notification Daemon
|
"bash $HOME/.scripts/dunst.sh --on" \ # Dunst Notification Daemon
|
||||||
"bash $HOME/.scripts/picom.sh --on" \ # Picom Compositor
|
"bash $HOME/.scripts/picom.sh --on" \ # Picom Compositor
|
||||||
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout
|
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout
|
||||||
"/usr/bin/numlockx on" \ # Enable numlock
|
"/usr/bin/numlockx on" \ # Enable numlock
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -a kill_delay_array=(\
|
declare -a kill_delay_array=(\
|
||||||
"pkill gammastep-indic" \ # Gammastep Night Light
|
"pkill gammastep-indic" \ # Gammastep Night Light
|
||||||
"pkill blueman-applet" \ # Blueman Bluetooth Manager
|
"pkill blueman-applet" \ # Blueman Bluetooth Manager
|
||||||
"pkill nm-applet" \ # Network Manager Applet
|
"pkill nm-applet" \ # Network Manager Applet
|
||||||
"pkill kdeconnect-indicator" \ # KDE Connect Indicator
|
"pkill kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
"pkill flameshot" \ # Flameshot Screenshot Tool
|
"pkill flameshot" \ # Flameshot Screenshot Tool
|
||||||
"pkill xfce4-power-manager" \ # XFCE4 Power Manager
|
"pkill xfce4-power-manager" \ # XFCE4 Power Manager
|
||||||
"pkill udiskie" \ # Udiskie
|
"pkill udiskie" \ # Udiskie
|
||||||
"pkill openrgb" \ # OpenRGB
|
"pkill openrgb" \ # OpenRGB
|
||||||
"pkill syncthing-gtk" \ # Syncthing GTK
|
"pkill syncthing-gtk" \ # Syncthing GTK
|
||||||
"pkill nextcloud" \ # NextCloud Client
|
"pkill nextcloud" \ # NextCloud Client
|
||||||
"pkill nyrna" \ # Nyrna
|
"pkill nyrna" \ # Nyrna
|
||||||
"bash $HOME/.scripts/dunst.sh --off" \ # Dunst Notification Daemon
|
"bash $HOME/.scripts/dunst.sh --off" \ # Dunst Notification Daemon
|
||||||
"bash $HOME/.scripts/picom.sh --off" \ # Picom Compositor
|
"bash $HOME/.scripts/picom.sh --off" \ # Picom Compositor
|
||||||
)
|
)
|
||||||
@@ -9037,6 +9037,13 @@ export _JAVA_AWT_WM_NONREPARENTING=1 # Java fix for Window Managers
|
|||||||
export XDG_CURRENT_DESKTOP=wlroots # Set XDG current desktop
|
export XDG_CURRENT_DESKTOP=wlroots # Set XDG current desktop
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
**** Stop Startup Applications & Processes
|
||||||
|
|
||||||
|
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.winitrc
|
||||||
|
$HOME/.scripts/wayland-startup.sh --kill-startup
|
||||||
|
$HOME/.scripts/wayland-startup.sh --kill-delay
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
**** Launch Environment
|
**** Launch Environment
|
||||||
|
|
||||||
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.winitrc
|
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.winitrc
|
||||||
@@ -9046,10 +9053,10 @@ dwl &
|
|||||||
**** Startup Applications & Processes
|
**** Startup Applications & Processes
|
||||||
|
|
||||||
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.winitrc
|
#+BEGIN_SRC shell :shebang #!/usr/bin/env bash :tangle dwl/.winitrc
|
||||||
(sleep 3 &&
|
sleep 2
|
||||||
$HOME/.scripts/wayland-startup.sh --kill-startup &&
|
$HOME/.scripts/wayland-startup.sh --startup &
|
||||||
sleep 2 &&
|
sleep 3
|
||||||
$HOME/.scripts/wayland-startup.sh --startup) &
|
$HOME/.scripts/wayland-startup.sh --delay &
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Wayland Startup
|
*** Wayland Startup
|
||||||
@@ -9066,18 +9073,6 @@ declare -a startup_array=(\
|
|||||||
"/usr/bin/bash $HOME/.scripts/dunst.sh" \ # Dunst Notification Daemon
|
"/usr/bin/bash $HOME/.scripts/dunst.sh" \ # Dunst Notification Daemon
|
||||||
"/usr/bin/wl-paste --type text --watch cliphist store" \ # Clipboard for Text
|
"/usr/bin/wl-paste --type text --watch cliphist store" \ # Clipboard for Text
|
||||||
"/usr/bin/wl-paste --type image --watch cliphist store" \ # Clipboard for Images
|
"/usr/bin/wl-paste --type image --watch cliphist store" \ # Clipboard for Images
|
||||||
# Tray Applications
|
|
||||||
"/usr/bin/gammastep-indicator" \ # Gamamstep Night Light Indicator
|
|
||||||
"/usr/bin/blueman-applet" \ # Bluetooth Manager Applet
|
|
||||||
"/usr/bin/nm-applet" \ # Network Manager Applet
|
|
||||||
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
|
||||||
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
|
||||||
# Status Bar
|
|
||||||
"/usr/bin/sh -c $HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration)
|
|
||||||
# GUI Applications
|
|
||||||
"/usr/bin/nextcloud" \ # NextCloud Client
|
|
||||||
"/usr/bin/syncthing-gtk" \ # Syncthing GUI
|
|
||||||
"/usr/bin/openrgb" \ # OpenRGB
|
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -a kill_startup_array=(\
|
declare -a kill_startup_array=(\
|
||||||
@@ -9089,14 +9084,32 @@ declare -a kill_startup_array=(\
|
|||||||
"pkill kdeconnectd" \
|
"pkill kdeconnectd" \
|
||||||
"pkill dunst" \
|
"pkill dunst" \
|
||||||
"pkill wl-paste" \
|
"pkill wl-paste" \
|
||||||
|
)
|
||||||
|
|
||||||
|
declare -a delay_array=(\
|
||||||
|
# Status Bar
|
||||||
|
"/usr/bin/sh -c $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
|
||||||
|
"/usr/bin/nm-applet" \ # Network Manager Applet
|
||||||
|
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
|
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
||||||
|
# GUI Applications
|
||||||
|
"/usr/bin/nextcloud" \ # NextCloud Client
|
||||||
|
"/usr/bin/syncthing-gtk" \ # Syncthing GUI
|
||||||
|
"/usr/bin/openrgb" \ # OpenRGB
|
||||||
|
)
|
||||||
|
|
||||||
|
declare -a kill_delay_array=(\
|
||||||
|
# Status Bar
|
||||||
|
"pkill waybar" \
|
||||||
# Tray Applications
|
# Tray Applications
|
||||||
"pkill gammastep-indic" \
|
"pkill gammastep-indic" \
|
||||||
"pkill blueman-applet" \
|
"pkill blueman-applet" \
|
||||||
"pkill nm-applet" \
|
"pkill nm-applet" \
|
||||||
"pkill kdeconnect-indi" \
|
"pkill kdeconnect-indi" \
|
||||||
"pkill udiskie" \
|
"pkill udiskie" \
|
||||||
# Status Bar
|
|
||||||
"pkill waybar" \
|
|
||||||
# GUI Applications
|
# GUI Applications
|
||||||
"pkill nextcloud" \
|
"pkill nextcloud" \
|
||||||
"pkill syncthing-gtk" \
|
"pkill syncthing-gtk" \
|
||||||
@@ -9116,7 +9129,9 @@ help_menu() {
|
|||||||
rofi_menu() {
|
rofi_menu() {
|
||||||
declare -a options=(
|
declare -a options=(
|
||||||
" Launch Startup Processes - startup"
|
" Launch Startup Processes - startup"
|
||||||
|
" Launch Delayed Processes - delay"
|
||||||
" Kill Startup Processes - kill-startup"
|
" Kill Startup Processes - kill-startup"
|
||||||
|
" Kill Delayed Processes - kill-delay"
|
||||||
" Back - back"
|
" Back - back"
|
||||||
" Quit - quit"
|
" Quit - quit"
|
||||||
)
|
)
|
||||||
@@ -9151,6 +9166,17 @@ main() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
--delay)
|
||||||
|
for i in "${delay_array[@]}"
|
||||||
|
do
|
||||||
|
if ! command -v $i > /dev/null
|
||||||
|
then
|
||||||
|
do_nothing() { :; }
|
||||||
|
else
|
||||||
|
$i &
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
--kill-startup)
|
--kill-startup)
|
||||||
for i in "${kill_startup_array[@]}"
|
for i in "${kill_startup_array[@]}"
|
||||||
do
|
do
|
||||||
@@ -9162,6 +9188,17 @@ main() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
--kill-delay)
|
||||||
|
for i in "${kill_delay_array[@]}"
|
||||||
|
do
|
||||||
|
if ! command -v $i > /dev/null
|
||||||
|
then
|
||||||
|
do_nothing() { :; }
|
||||||
|
else
|
||||||
|
$i &
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
--rofi)
|
--rofi)
|
||||||
rofi_menu
|
rofi_menu
|
||||||
;;
|
;;
|
||||||
|
@@ -10,18 +10,6 @@ declare -a startup_array=(\
|
|||||||
"/usr/bin/bash $HOME/.scripts/dunst.sh" \ # Dunst Notification Daemon
|
"/usr/bin/bash $HOME/.scripts/dunst.sh" \ # Dunst Notification Daemon
|
||||||
"/usr/bin/wl-paste --type text --watch cliphist store" \ # Clipboard for Text
|
"/usr/bin/wl-paste --type text --watch cliphist store" \ # Clipboard for Text
|
||||||
"/usr/bin/wl-paste --type image --watch cliphist store" \ # Clipboard for Images
|
"/usr/bin/wl-paste --type image --watch cliphist store" \ # Clipboard for Images
|
||||||
# Tray Applications
|
|
||||||
"/usr/bin/gammastep-indicator" \ # Gamamstep Night Light Indicator
|
|
||||||
"/usr/bin/blueman-applet" \ # Bluetooth Manager Applet
|
|
||||||
"/usr/bin/nm-applet" \ # Network Manager Applet
|
|
||||||
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
|
||||||
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
|
||||||
# Status Bar
|
|
||||||
"/usr/bin/sh -c $HOME/.config/dwl/waybar/launch.sh" \ # Waybar (dwl configuration)
|
|
||||||
# GUI Applications
|
|
||||||
"/usr/bin/nextcloud" \ # NextCloud Client
|
|
||||||
"/usr/bin/syncthing-gtk" \ # Syncthing GUI
|
|
||||||
"/usr/bin/openrgb" \ # OpenRGB
|
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -a kill_startup_array=(\
|
declare -a kill_startup_array=(\
|
||||||
@@ -33,14 +21,32 @@ declare -a kill_startup_array=(\
|
|||||||
"pkill kdeconnectd" \
|
"pkill kdeconnectd" \
|
||||||
"pkill dunst" \
|
"pkill dunst" \
|
||||||
"pkill wl-paste" \
|
"pkill wl-paste" \
|
||||||
|
)
|
||||||
|
|
||||||
|
declare -a delay_array=(\
|
||||||
|
# Status Bar
|
||||||
|
"/usr/bin/sh -c $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
|
||||||
|
"/usr/bin/nm-applet" \ # Network Manager Applet
|
||||||
|
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
|
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
||||||
|
# GUI Applications
|
||||||
|
"/usr/bin/nextcloud" \ # NextCloud Client
|
||||||
|
"/usr/bin/syncthing-gtk" \ # Syncthing GUI
|
||||||
|
"/usr/bin/openrgb" \ # OpenRGB
|
||||||
|
)
|
||||||
|
|
||||||
|
declare -a kill_delay_array=(\
|
||||||
|
# Status Bar
|
||||||
|
"pkill waybar" \
|
||||||
# Tray Applications
|
# Tray Applications
|
||||||
"pkill gammastep-indic" \
|
"pkill gammastep-indic" \
|
||||||
"pkill blueman-applet" \
|
"pkill blueman-applet" \
|
||||||
"pkill nm-applet" \
|
"pkill nm-applet" \
|
||||||
"pkill kdeconnect-indi" \
|
"pkill kdeconnect-indi" \
|
||||||
"pkill udiskie" \
|
"pkill udiskie" \
|
||||||
# Status Bar
|
|
||||||
"pkill waybar" \
|
|
||||||
# GUI Applications
|
# GUI Applications
|
||||||
"pkill nextcloud" \
|
"pkill nextcloud" \
|
||||||
"pkill syncthing-gtk" \
|
"pkill syncthing-gtk" \
|
||||||
@@ -60,7 +66,9 @@ help_menu() {
|
|||||||
rofi_menu() {
|
rofi_menu() {
|
||||||
declare -a options=(
|
declare -a options=(
|
||||||
" Launch Startup Processes - startup"
|
" Launch Startup Processes - startup"
|
||||||
|
" Launch Delayed Processes - delay"
|
||||||
" Kill Startup Processes - kill-startup"
|
" Kill Startup Processes - kill-startup"
|
||||||
|
" Kill Delayed Processes - kill-delay"
|
||||||
" Back - back"
|
" Back - back"
|
||||||
" Quit - quit"
|
" Quit - quit"
|
||||||
)
|
)
|
||||||
@@ -95,6 +103,17 @@ main() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
--delay)
|
||||||
|
for i in "${delay_array[@]}"
|
||||||
|
do
|
||||||
|
if ! command -v $i > /dev/null
|
||||||
|
then
|
||||||
|
do_nothing() { :; }
|
||||||
|
else
|
||||||
|
$i &
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
--kill-startup)
|
--kill-startup)
|
||||||
for i in "${kill_startup_array[@]}"
|
for i in "${kill_startup_array[@]}"
|
||||||
do
|
do
|
||||||
@@ -106,6 +125,17 @@ main() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
--kill-delay)
|
||||||
|
for i in "${kill_delay_array[@]}"
|
||||||
|
do
|
||||||
|
if ! command -v $i > /dev/null
|
||||||
|
then
|
||||||
|
do_nothing() { :; }
|
||||||
|
else
|
||||||
|
$i &
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
--rofi)
|
--rofi)
|
||||||
rofi_menu
|
rofi_menu
|
||||||
;;
|
;;
|
||||||
|
11
dwl/.winitrc
11
dwl/.winitrc
@@ -9,9 +9,12 @@ export QT_QPA_PLATFORMTHEME=qt6ct # QGtkStyle
|
|||||||
export _JAVA_AWT_WM_NONREPARENTING=1 # Java fix for Window Managers
|
export _JAVA_AWT_WM_NONREPARENTING=1 # Java fix for Window Managers
|
||||||
export XDG_CURRENT_DESKTOP=wlroots # Set XDG current desktop
|
export XDG_CURRENT_DESKTOP=wlroots # Set XDG current desktop
|
||||||
|
|
||||||
|
$HOME/.scripts/wayland-startup.sh --kill-startup
|
||||||
|
$HOME/.scripts/wayland-startup.sh --kill-delay
|
||||||
|
|
||||||
dwl &
|
dwl &
|
||||||
|
|
||||||
(sleep 3 &&
|
sleep 2
|
||||||
$HOME/.scripts/wayland-startup.sh --kill-startup &&
|
$HOME/.scripts/wayland-startup.sh --startup &
|
||||||
sleep 2 &&
|
sleep 3
|
||||||
$HOME/.scripts/wayland-startup.sh --startup) &
|
$HOME/.scripts/wayland-startup.sh --delay &
|
||||||
|
@@ -20,35 +20,35 @@ declare -a kill_startup_array=(\
|
|||||||
)
|
)
|
||||||
|
|
||||||
declare -a delay_array=(\
|
declare -a delay_array=(\
|
||||||
"/usr/bin/gammastep-indicator" \ # Gammastep Night Light
|
"/usr/bin/gammastep-indicator" \ # Gammastep Night Light
|
||||||
"/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
|
"/usr/bin/blueman-applet" \ # Blueman Bluetooth Manager
|
||||||
"/usr/bin/nm-applet" \ # Network Manager Applet
|
"/usr/bin/nm-applet" \ # Network Manager Applet
|
||||||
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
"/usr/bin/kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool
|
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool
|
||||||
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
|
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
|
||||||
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
"/usr/bin/udiskie -a -n -s" \ # Udiskie
|
||||||
"/usr/bin/openrgb" \ # OpenRGB
|
"/usr/bin/openrgb" \ # OpenRGB
|
||||||
"/usr/bin/syncthing-gtk" \ # Syncthing GTK
|
"/usr/bin/syncthing-gtk" \ # Syncthing GTK
|
||||||
"/usr/bin/nextcloud" \ # NextCloud Client
|
"/usr/bin/nextcloud" \ # NextCloud Client
|
||||||
"/usr/bin/nyrna" \ # Nyrna
|
"/usr/bin/nyrna" \ # Nyrna
|
||||||
"bash $HOME/.scripts/dunst.sh --on" \ # Dunst Notification Daemon
|
"bash $HOME/.scripts/dunst.sh --on" \ # Dunst Notification Daemon
|
||||||
"bash $HOME/.scripts/picom.sh --on" \ # Picom Compositor
|
"bash $HOME/.scripts/picom.sh --on" \ # Picom Compositor
|
||||||
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout
|
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout
|
||||||
"/usr/bin/numlockx on" \ # Enable numlock
|
"/usr/bin/numlockx on" \ # Enable numlock
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -a kill_delay_array=(\
|
declare -a kill_delay_array=(\
|
||||||
"pkill gammastep-indic" \ # Gammastep Night Light
|
"pkill gammastep-indic" \ # Gammastep Night Light
|
||||||
"pkill blueman-applet" \ # Blueman Bluetooth Manager
|
"pkill blueman-applet" \ # Blueman Bluetooth Manager
|
||||||
"pkill nm-applet" \ # Network Manager Applet
|
"pkill nm-applet" \ # Network Manager Applet
|
||||||
"pkill kdeconnect-indicator" \ # KDE Connect Indicator
|
"pkill kdeconnect-indicator" \ # KDE Connect Indicator
|
||||||
"pkill flameshot" \ # Flameshot Screenshot Tool
|
"pkill flameshot" \ # Flameshot Screenshot Tool
|
||||||
"pkill xfce4-power-manager" \ # XFCE4 Power Manager
|
"pkill xfce4-power-manager" \ # XFCE4 Power Manager
|
||||||
"pkill udiskie" \ # Udiskie
|
"pkill udiskie" \ # Udiskie
|
||||||
"pkill openrgb" \ # OpenRGB
|
"pkill openrgb" \ # OpenRGB
|
||||||
"pkill syncthing-gtk" \ # Syncthing GTK
|
"pkill syncthing-gtk" \ # Syncthing GTK
|
||||||
"pkill nextcloud" \ # NextCloud Client
|
"pkill nextcloud" \ # NextCloud Client
|
||||||
"pkill nyrna" \ # Nyrna
|
"pkill nyrna" \ # Nyrna
|
||||||
"bash $HOME/.scripts/dunst.sh --off" \ # Dunst Notification Daemon
|
"bash $HOME/.scripts/dunst.sh --off" \ # Dunst Notification Daemon
|
||||||
"bash $HOME/.scripts/picom.sh --off" \ # Picom Compositor
|
"bash $HOME/.scripts/picom.sh --off" \ # Picom Compositor
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user