-
Notifications
You must be signed in to change notification settings - Fork 0
/
rofi-startmenu
executable file
·58 lines (54 loc) · 1.06 KB
/
rofi-startmenu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env bash
# config
rofi_mainfont="EBGaramond 20"
rofi_greeting="Greetings, Japorized!"
_rofi() {
rofi -sep '|' -columns 5 -lines 2 -disable-history true -cycle true \
-theme rofi-simplemenu.rasi -width 80 -height 200 \
-no-show-icons -dmenu -font "${rofi_mainfont}" \
-mesg "<span face='ClearSans' font_size='x-large' weight='bold'>${rofi_greeting}</span>"
}
choice=$(echo -n "\
termite| thunar| geary| firefox| nvim-qt| steam| telegram| rofiwpg|ア rofianime| zathura| obs| flowblade| font viewer\
" | _rofi)
case "$choice" in
" termite")
termite
;;
" thunar")
thunar ~
;;
" geary")
geary
;;
" firefox")
firefox
;;
" nvim-qt")
nvim-qt
;;
" steam")
steam
;;
" telegram")
web-telegram
;;
" rofiwpg")
rofiwpg
;;
"ア rofianime")
rofianime
;;
" zathura")
tabbed-zathura
;;
" obs")
obs
;;
" flowblade")
flowblade
;;
" font viewer")
gnome-font-viewer
;;
esac