all repos — dotfiles @ 8ce58989ee8649b21f47e086f6cf4dec73a3f4da

my *nix dotfiles

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