summaryrefslogtreecommitdiff
path: root/.config/scripts/master.sh
blob: 576e5aa6e7cb862e78b11b8f440bdb706709e125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

SCRIPT_DIR="$HOME/.config/scripts"

options="wallpaper\nsettings\nconfig\nbtop\nfastfetch"

choice=$(echo -e "$options" | fuzzel -d -p "> ")

case "$choice" in
    *wallpaper*) "$SCRIPT_DIR/wallpaper.sh" ;;
    *settings*) "$SCRIPT_DIR/settings.sh" ;;
    *config*) "$SCRIPT_DIR/config.sh" ;;
    *btop*) kitty btop ;;
    *fastfetch*) kitty sh -c "fastfetch; read -p 'press enter to close...'" ;;
esac