14 lines
235 B
Bash
Executable File
14 lines
235 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
# Import Current Theme
|
|
DIR="$HOME/.config/i3"
|
|
STYLE="gruvbox"
|
|
RASI="$DIR/themes/$STYLE/rofi/runner.rasi"
|
|
|
|
# Run
|
|
rofi \
|
|
-show run \
|
|
-theme ${RASI}
|