10 lines
158 B
Bash
10 lines
158 B
Bash
# vim: ft=zsh
|
|
|
|
if command-exists "bw"; then
|
|
function bwsesion {
|
|
export BW_SESSION="$(bw unlock --raw)"
|
|
bw unlock --check
|
|
bw sync
|
|
}
|
|
fi
|