From d47ea5c5ff495400bf956c528278ace0f08a1470 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 19 Oct 2020 19:06:13 +0200 Subject: [PATCH] Update --- .gitmodules | 3 +++ config.fish | 3 +++ fisher | 1 + functions/ampache-localplay-vlc.fish | 4 ++++ functions/winfix.fish | 5 +++++ 5 files changed, 16 insertions(+) create mode 100644 .gitmodules create mode 100644 config.fish create mode 160000 fisher create mode 100644 functions/ampache-localplay-vlc.fish create mode 100644 functions/winfix.fish diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..897882f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "fisher"] + path = fisher + url = https://github.com/jorgebucaran/fisher diff --git a/config.fish b/config.fish new file mode 100644 index 0000000..3429666 --- /dev/null +++ b/config.fish @@ -0,0 +1,3 @@ + +# Created by `userpath` on 2020-10-08 17:06:33 +set PATH $PATH /mnt/tera/ext4/data/local/bin diff --git a/fisher b/fisher new file mode 160000 index 0000000..c2c091f --- /dev/null +++ b/fisher @@ -0,0 +1 @@ +Subproject commit c2c091f33ea83cbcb67ac2d8d912c2cfddd5e4a6 diff --git a/functions/ampache-localplay-vlc.fish b/functions/ampache-localplay-vlc.fish new file mode 100644 index 0000000..cca9693 --- /dev/null +++ b/functions/ampache-localplay-vlc.fish @@ -0,0 +1,4 @@ +# Defined in - @ line 1 +function ampache-localplay-vlc --wraps='vlc -I qt --extraintf http --http-port 40000' --description 'alias ampache-localplay-vlc=vlc -I qt --extraintf http --http-port 40000' + vlc -I qt --extraintf http --http-port 40000 $argv; +end diff --git a/functions/winfix.fish b/functions/winfix.fish new file mode 100644 index 0000000..209e799 --- /dev/null +++ b/functions/winfix.fish @@ -0,0 +1,5 @@ +function winfix + sudo umount /dev/sda2 + sudo ntfsfix -d /dev/sda2 + sudo mount -a +end