15 lines
299 B
Bash
Executable File
15 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
# Import Current Theme
|
|
DIR="$HOME/.config/polybar/ac-adaptive"
|
|
RASI="$DIR/scripts/rofi/askpass.rasi"
|
|
|
|
# rofi text dialog to get password
|
|
rofi -dmenu \
|
|
-password \
|
|
-i \
|
|
-p "Root" \
|
|
-theme ${RASI}
|