bin/pwmenu.sh (view raw)
1#!/usr/bin/env bash 2 3pass="$(pw -l | dmenu)" 4if [[ -z "$pass" ]]; then 5 exit 6else 7 pw -c "$pass" 8fi