15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
||
|
|
||
|
# Import Current Theme
|
||
|
DIR="$HOME/.config/openbox"
|
||
|
STYLE="default"
|
||
|
RASI="$DIR/themes/$STYLE/rofi/launcher.rasi"
|
||
|
|
||
|
# Run
|
||
|
rofi \
|
||
|
-show drun \
|
||
|
-kb-cancel Alt-F1 \
|
||
|
-theme ${RASI}
|