18 lines
325 B
Bash
Executable File
18 lines
325 B
Bash
Executable File
#!/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
|