mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
9 lines
252 B
Fish
9 lines
252 B
Fish
# makes the `jm up` command get the token from bitwarden using rbw
|
|
function jm --wraps=jm
|
|
if [ $argv[1] = up ]
|
|
set token (rbw get jensmemes)
|
|
command jm up --token $token $argv[2..]
|
|
else
|
|
command jm $argv[1..]
|
|
end
|
|
end
|