forked from colonelpanic/dotfiles
8 lines
161 B
Plaintext
8 lines
161 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
function rofi_paswitch {
|
||
|
pahelper | tr -d '\n' | tr '>' '|' | rofi -i -dmenu -sep '|' | grep -Eo ' [0-9]*' | xargs pahelper
|
||
|
}
|
||
|
|
||
|
rofi_paswitch
|