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