|
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2024 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}
|