diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-18 16:02:22 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-18 16:02:22 +0100 |
commit | e068be40b9699131c60b743f6af4de103226c9c3 (patch) | |
tree | 79b0b073f495c3fc971a2d9d133b6a980bbef86d /fish2024/functions/mountmusic.fish | |
parent | af968405d8e34d4aa91b828b90bf919cff7d1981 (diff) |
bunch of fish stuff
Diffstat (limited to 'fish2024/functions/mountmusic.fish')
-rw-r--r-- | fish2024/functions/mountmusic.fish | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fish2024/functions/mountmusic.fish b/fish2024/functions/mountmusic.fish new file mode 100644 index 0000000..c10f562 --- /dev/null +++ b/fish2024/functions/mountmusic.fish @@ -0,0 +1,4 @@ +function mountmusic --wraps='sudo sshfs -o IdentityFile=/home/lemon/.ssh/id_ed25519,default_permissions,allow_other lemon@192.168.1.10:/mnt/music /mnt/music' --description 'alias mountmusic=sudo sshfs -o IdentityFile=/home/lemon/.ssh/id_ed25519,default_permissions,allow_other lemon@192.168.1.10:/mnt/music /mnt/music' + sudo sshfs -o IdentityFile=/home/lemon/.ssh/id_ed25519,default_permissions,allow_other lemon@192.168.1.10:/mnt/music /mnt/music $argv + +end |