aboutsummaryrefslogtreecommitdiff
path: root/dmenuTerm.sh
blob: 98cff7f47aacd63fb6cbf0d6f6694c0e9dfd7ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# dmenu script for opening console programs and scripts directly

options="neofetch\ncmus\nnewsboat\nneomutt\nsyncthing\nbrightFirst\nresetConnection\nwifiDown\nyears\nmonths\nbg selection\nshowColors" 

chosen=$(echo -e "$options" | dmenu -i)

case "$chosen" in
	# floating windows
	neofetch) urxvt -name floating -sh 30 -cr black -geometry 80x21 -e bash ~/scripts/neofetch.sh ;;
	showColors) urxvt -name floating -sh 10 -cr black -geometry 43x9 -e bash ~/scripts/showColors.sh ;;
	years) urxvt -name floating -sh 20 -cr black -geometry 66x39 -e bash ~/scripts/years.sh ;;
	months) urxvt -name floating -sh 20 -cr black -geometry 22x9 -e bash ~/scripts/months.sh ;;
	"bg selection") urxvt -name floating -sh 20 -cr black -geometry 45x6 -e bash ~/scripts/bgBrowser.sh ;;
	#programs
	cmus) urxvt -cd ~/music -e cmus ;;
	newsboat) urxvt -e newsboat ;;
	neomutt) urxvt -e neomutt ;;
	syncthing) qutebrowser && urxvt -e bash ~/scripts/syncthing.sh ;;
	# sudo stuff
	brightFirst) urxvt -name floating  -geometry 32x1 -e sudo bash ~/scripts/brightFirst.sh ;;
	resetConnection) urxvt -name floating  -geometry 32x1 -e sudo bash ~/scripts/resetConnection.sh ;;
	wifiDown) urxvt -name floating  -geometry 32x1 -e sudo bash ~/scripts/wifiDown.sh ;;
esac