blob: d27df9a4b23181fc6d456e68f058ccd2520d8c3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
SCRIPT_DIR="$HOME/.config/scripts"
options="wallpaper\nsettings\nfastfetch"
choice=$(echo -e "$options" | fuzzel -d -p "> ")
case "$choice" in
*wallpaper*) "$SCRIPT_DIR/wallpaper.sh" ;;
*decorations*) "$SCRIPT_DIR/settings.sh" ;;
*fastfetch*) kitty sh -c "fastfetch; read -p 'press enter to close...'" ;;
esac
|