Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- test=$(dialog --menu "Choose one:" 10 30 2 1 Nitrogen 2 Pywal --output-fd 1)
- echo "${test}"
- if [[ "${test}" == "1" ]] ; then
- echo "You chose nitrogen"
- nitrogen --set-scaled ~/Git-Repos/Dotfiles/Wallpapers/5120x2880.jpg --save
- elif [[ "${test}" == "2" ]] ; then
- echo "You chose pywal"
- ~/.config/qtile/Scripts/wal-set
- else
- echo "Nothing chosen"
- fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement