-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlauncher.sh
More file actions
executable file
·29 lines (26 loc) · 993 Bytes
/
launcher.sh
File metadata and controls
executable file
·29 lines (26 loc) · 993 Bytes
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
#!/usr/bin/env bash
## By Davoud Arsalani
## https://github.com/davoudarsalani/scripts
## https://github.com/davoudarsalani/scripts/blob/master/launcher.sh
## https://raw.githubusercontent.com/davoudarsalani/scripts/master/launcher.sh
## https://davoudarsalani.ir
case "$1" in
rofi )
# ~/.config/rofi/launchers/type-2/style-12.rasi
rofi \
-combi-modi ":greenclip print,window,drun" \
-modi "combi,:greenclip print,window,drun" \
-show combi \
-theme ~/.config/rofi/launchers/type-5/style-4.rasi \
-theme-str 'window { width: 1000; }' \
-theme-str "window { background-color: ${gruvbox_bg0_h}; }" \
-theme-str 'window { border-radius: 0px; }'
;;
dmenu )
dmenu_run \
-i \
-p 'dmenu' \
-l "$dmenulines" -fn "$dmenufn" \
-nb "$dmenunb" -nf "$dmenunf" \
-sb "$dmenusb" -sf "$dmenusf" ;;
esac