summaryrefslogtreecommitdiff
path: root/scripts/scripts_menu.sh
blob: 881cc008c576832c202d0d1aa03f77533b3aa4c9 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/zsh

dir="$HOME/scripts"

selected=$(find "$dir" -maxdepth 1 -type f -printf "%f\n" | wmenu -f "JetBrainsMonoNF 10" -N "#121212" -s "#121212" -S "#7162ac" -M "#121212" -l 5 -i -p "Run script: ")

if [[ -n "$selected" ]]; then
    zsh "$dir/$selected"
fi