16 lines
309 B
Bash
Executable File
16 lines
309 B
Bash
Executable File
#!/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/askpass.rasi"
|
|
|
|
# rofi text dialog to get password
|
|
rofi -dmenu \
|
|
-password \
|
|
-i \
|
|
-p "Root" \
|
|
-theme ${RASI}
|