dotfiles/config/i3/scripts/rofi_askpass
2023-05-24 14:14:36 +02:00

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