#!/bin/sh choice=$(echo -e " Settings\n Bluetooth\n Network\n󰖩 Wifi\n✘ Exit" | dmenu -bw 4 -c -z 500 -l 6 -p "System: ") case "$choice" in " Settings") dmenu-settings;; " Bluetooth") dmenu-bluetooth;; " Network") st -e nmtui;; "󰖩 Wifi") st -e wavemon;; " Exit") exit 0 ;; *) exit 1;; esac