diff options
Diffstat (limited to 'scripts/Scripts/lc')
-rwxr-xr-x | scripts/Scripts/lc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/Scripts/lc b/scripts/Scripts/lc index 98b6ee2..6786a9a 100755 --- a/scripts/Scripts/lc +++ b/scripts/Scripts/lc @@ -3,7 +3,7 @@ LOGFILE=.lc.log DMENU="rofi -dmenu" -Commands="s suspend screen goto common pass remember set-keyboard poweroff lock scrot region overleaf-render caps-lock win wall cups pass sync random" +Commands="s suspend screen goto common bwpass remember set-keyboard poweroff lock scrot region overleaf-render caps-lock win wall cups pass sync random" handle_stuff() { if [ "$1" = "--dmenu" ]; then @@ -77,6 +77,10 @@ handle_stuff() { bash $HOME/Scripts/passmenu --type fi + if [ "$1" = "bwpass" ]; then + bash $HOME/Scripts/bwmenu --type + fi + if [ "$1" = "common" ]; then python3 Scripts/commondocs.py ~/commondocs.json $(python3 Scripts/commondocs.py ~/commondocs.json | $DMENU) fi |