Adds the option to type a passord in password manager

This commit is contained in:
Jonathan Hodgson 2020-03-11 11:45:16 +00:00
parent 715b2b7d3e
commit 85af6ac011
2 changed files with 30 additions and 2 deletions

15
bin/.bin/dmenu/rofi-background Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
case "$(echo -e "default\nfilm\nearth" | rofi -dmenu)" in
default)
feh --bg-fill "$HOME/Pictures/background"
;;
earth)
background --notify --earth
;;
film)
dir="$HOME/Videos/wallpaper-candidates/"
background --film $( ls "$dir" | rofi -dmenu )
;;
esac