13 lines
213 B
Bash
Executable File
13 lines
213 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Import Current Theme
|
|
DIR="$HOME/.config/hypr"
|
|
RASI="$DIR/rofi/askpass.rasi"
|
|
|
|
# Rofi text dialog to get password
|
|
rofi -dmenu \
|
|
-password \
|
|
-i \
|
|
-p "Root" \
|
|
-theme ${RASI}
|