14 lines
240 B
Plaintext
14 lines
240 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/runner.rasi"
|
||
|
|
||
|
# Run
|
||
|
rofi \
|
||
|
-show run \
|
||
|
-theme ${RASI}
|