dotfiles/.config/rofi/bin/askpass
2023-11-13 21:17:35 +01:00

15 lines
302 B
Bash
Executable file

#!/usr/bin/env bash
## Copyright (C) 2020-2022 Aditya Shakya <adi1090x@gmail.com>
# Import Current Theme
DIR="$HOME/.config/themes"
STYLE="easy"
RASI="$DIR/$STYLE/rofi/askpass.rasi"
# Rofi text dialog to get password
rofi -dmenu \
-password \
-i \
-p "Password" \
-theme ${RASI}