Skip to content

Instantly share code, notes, and snippets.

@rosoau
Last active May 1, 2021 20:43
Show Gist options
  • Save rosoau/5730c667354ff0204217f07dd080175b to your computer and use it in GitHub Desktop.
Save rosoau/5730c667354ff0204217f07dd080175b to your computer and use it in GitHub Desktop.
Displays a window to configure dunst
#!/bin/bash
zenity --window-icon=/usr/share/icons/gnome/24x24/status/dialog-warning.png --text-info --width=700 --height=700 --ok-label="Save Changes" --title="Configure Notifications" --filename=/home/user/.config/dunst/dunstrc --editable > /home/user/.config/dunst/dunstrc-new
if [ -s /home/user/.config/dunst/dunstrc-new ]
then
mv /home/user/.config/dunst/dunstrc-new /home/user/.config/dunst/dunstrc
fi
sleep 1
killall /usr/local/bin/dunst
sleep 1
/usr/local/bin/dunst
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment