You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
325 B
Bash
18 lines
325 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
## Rofi : Launcher (Modi Drun, Run, File Browser, Window)
|
|
# ## Available Styles
|
|
#
|
|
## dropdown-transparent dropdown-text
|
|
## fullscreen-transparent small-transparent
|
|
|
|
dir="$HOME/.config/rofi/dmenu"
|
|
theme='dropdown-text'
|
|
|
|
## Run
|
|
rofi \
|
|
-dmenu \
|
|
-i \
|
|
-p "$1" \
|
|
-theme ${dir}/${theme}.rasi
|