2023-10-05 10:09:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-01-01 08:54:32 -01:00
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
2023-10-05 10:09:04 +00:00
|
|
|
|
|
|
|
# Import Current Theme
|
|
|
|
DIR="$HOME/.config/openbox"
|
|
|
|
STYLE="default"
|
|
|
|
RASI="$DIR/themes/$STYLE/rofi/runner.rasi"
|
|
|
|
|
|
|
|
# Run
|
|
|
|
rofi \
|
|
|
|
-show run \
|
|
|
|
-theme ${RASI}
|