13 lines
185 B
Bash
13 lines
185 B
Bash
#!/bin/bash
|
|
|
|
action=$(wofi --cache-file=/dev/null --dmenu << EOF
|
|
Restart Network
|
|
EOF
|
|
)
|
|
|
|
case "$action" in
|
|
" Restart Network")
|
|
~/.config/scripts/restart_network.sh
|
|
;;
|
|
esac
|