Initial commit

This commit is contained in:
2023-10-04 20:19:25 -04:00
commit fd1f37d786
59 changed files with 5501 additions and 0 deletions

9
scripts/rofi-ask Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
# Take password prompt from STDIN, print password to STDOUT
# the sed piece just removes the colon from the provided
# prompt: rofi -p already gives us a colon
rofi -dmenu \
-password \
-no-fixed-num-lines \
-p "$(printf "$1" | sed s/://)"