Fish Shell CMD Done Notification & Update Startup List

- Remove nyrna from startup list
- Add udiskie to startup list to automount external drives
- Add command finished notification to fish shell
This commit is contained in:
Sravan Balaji
2022-06-12 11:15:17 -04:00
parent f80f6ee9a0
commit a61cb7c606
3 changed files with 45 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ declare -a delay_array=(\
"/usr/bin/flameshot" \ # Flameshot Screenshot Tool
"/usr/bin/xfce4-power-manager" \ # XFCE4 Power Manager
"/usr/bin/volctl" \ # PulseAudio Volume Control
"/usr/bin/nyrna" \ # Nyrna
"/usr/bin/udiskie -a -n -s" \ # Udiskie
"/usr/bin/openrgb" \ # OpenRGB
# System Restore Processes
"/usr/bin/autorandr --change --force" \ # Auto restore screen layout
@@ -46,7 +46,7 @@ declare -a kill_delay_array=(\
"killall flameshot" \ # Flameshot Screenshot Tool
"killall xfce4-power-manager" \ # XFCE4 Power Manager
"killall volctl" \ # PulseAudio Volume Control
"killall nyrna" \ # Nyrna
"killall udiskie" \ # Udiskie
"killall openrgb" \ # OpenRGB
)