2021-01-07 14:23:59 +00:00
|
|
|
#!/usr/bin/fish
|
2022-03-21 03:12:23 +00:00
|
|
|
rm -r ~/.config/fish/*
|
2022-04-11 16:39:19 +00:00
|
|
|
ln -s ../../.dotfiles/fish/config.fish ~/.config/fish
|
2022-03-21 03:12:23 +00:00
|
|
|
|
|
|
|
curl -sL https://git.io/fisher | source
|
|
|
|
fisher install {jorgebucaran/replay,PatrickF1/fzf}.fish
|
|
|
|
set -U fish_features 3.{0,1,4}
|
2021-01-07 14:23:59 +00:00
|
|
|
|
2022-03-21 03:12:23 +00:00
|
|
|
alias a 'alias -s'
|
|
|
|
a acmus 'timeout (math 60 - (date +%M))m mpv --loop https://acmusicext.com/static/$argv/sunny/(date +%-I%P).ogg'
|
2022-01-21 19:09:32 +00:00
|
|
|
a aliases 'v (env which aliases); command aliases'
|
2022-03-21 03:12:23 +00:00
|
|
|
a all2jxl 'fd -e{pn,jp}g -x cjxl -e 8 -d 0 {} {.}.jxl \; -x rm'
|
|
|
|
a ao3 'grep works/.\*/b $argv | cut -d/ -f3 | parallel curl -OJL ao3.org/downloads/{}/1.epub;:'
|
2022-02-02 02:24:07 +00:00
|
|
|
a base64d 'echo (echo $argv | base64 -d 2>/dev/null) | tee /dev/stderr 2>| clip;:'
|
2021-12-16 19:31:26 +00:00
|
|
|
a catbox 'curl https://catbox.moe/user/api.php -F reqtype=fileupload -F fileToUpload=@$argv;:'
|
2021-08-10 00:46:26 +00:00
|
|
|
a clip 'xclip -sel clip'
|
2021-01-24 05:49:08 +00:00
|
|
|
a cpugov 's cpupower frequency-set -g performance'
|
2021-09-07 18:31:45 +00:00
|
|
|
a dirdl 'wget -r -k -p --no-parent --no-clobber -e robots=off -R "index.html*"'
|
2022-03-09 19:13:21 +00:00
|
|
|
a dl 'not test "$argv" && cd ~/Downloads || aria2c -c -{j,s,x}16'
|
2022-05-19 03:47:32 +00:00
|
|
|
a drivedl 'dl https://docs.google.com/uc?export=download&id=(echo $argv | cut -d/ -f6)&confirm=t'
|
2021-01-07 14:23:59 +00:00
|
|
|
a dot 'cd ~/.dotfiles'
|
2021-01-24 05:49:08 +00:00
|
|
|
a ff 'fd -HILi -Edosdevices -E.git'
|
2021-01-07 14:23:59 +00:00
|
|
|
a g git
|
|
|
|
a giveme 's chown $USER'
|
2022-03-21 03:12:23 +00:00
|
|
|
a gsopti 'fd -e pdf -x gs -sDEVICE=pdfwrite -dNOPAUSE -sOutputFile={}1 {} \; -x mv {}1 {}'
|
2021-01-07 14:23:59 +00:00
|
|
|
a hardinfo 'inxi -SPARM -GCDN -v1 -xGCRS -Fxz'
|
2021-07-10 01:10:18 +00:00
|
|
|
a imgsum 'printf "$argv: " && identify -format "%#\n"'
|
2021-01-07 14:23:59 +00:00
|
|
|
a l ls
|
2021-12-31 19:29:17 +00:00
|
|
|
a la 'l -A'
|
2022-01-12 23:02:54 +00:00
|
|
|
a launcher 'rofi -combi-modi "drun,run" -show combi -modi "combi,window"'
|
|
|
|
a listen 'pactl list | grep loop && set t un; pactl "$t"load-module module-loopback'
|
2022-02-19 04:04:40 +00:00
|
|
|
a ncdu 'ncdu --color off --graph-style hash'
|
2022-03-21 03:12:23 +00:00
|
|
|
a nix 'replay . ~/.nix-profile/etc/profile.d/nix.sh; command nix'
|
|
|
|
a nsp 'netsurf (pandoc $argv -s -t html | psub -s .html);:'
|
|
|
|
a nsmd 'netsurf (md2html $argv | psub -s .html);:'
|
2021-01-07 14:23:59 +00:00
|
|
|
a off shutdown
|
2021-10-08 19:24:27 +00:00
|
|
|
a open xdg-open
|
2022-03-21 03:12:23 +00:00
|
|
|
a png2webp 'fd -e png -x cwebp -z 9 -mt {} -o {.}.webp \; -x rm'
|
2021-08-10 00:46:26 +00:00
|
|
|
a qutainer 'qutebrowser -B /tmp'
|
2021-09-25 05:28:09 +00:00
|
|
|
a rmdirs 'ff -t d -x rmdir -p'
|
2021-07-10 01:10:18 +00:00
|
|
|
a rmlinks 'ff -t l -x rm'
|
2021-01-07 14:23:59 +00:00
|
|
|
a qb 'qutebrowser --target auto'
|
|
|
|
a re 'systemctl reboot -i'
|
2021-03-23 12:16:56 +00:00
|
|
|
a s 'sudo env "PATH=$PATH"'
|
2021-01-07 14:23:59 +00:00
|
|
|
a se 's eopkg'
|
2021-10-08 19:24:27 +00:00
|
|
|
a tar bsdtar
|
2022-03-21 03:12:23 +00:00
|
|
|
a tcsv 'curl -sL http://torrents-csv.ml/service/search?q=$argv | jq ".[]|.name,.infohash,.seeders";:'
|
2021-12-16 19:31:26 +00:00
|
|
|
a temp 'curl temp.sh -T'
|
2022-03-21 03:12:23 +00:00
|
|
|
a tldrl 'curl -s https://raw.githubusercontent.com/tldr-pages/tldr/main/pages/{common,linux}/$argv.md;:'
|
2021-12-16 19:31:26 +00:00
|
|
|
a transfer 'curl https://transfer.sh/(basename $argv) -T'
|
2022-03-04 17:37:45 +00:00
|
|
|
a twitch 'mpv https://twitch.tv/$argv & disown ;:'
|
2022-03-21 03:12:23 +00:00
|
|
|
a uneopkg 'parallel "unzip -op {} install.tar.xz | tar xf -" ::: *.eopkg'
|
2021-01-07 14:23:59 +00:00
|
|
|
a up 'se up --y'
|
|
|
|
a v vi
|
2022-03-21 03:12:23 +00:00
|
|
|
a venv 'python3 -m venv venv && source venv/bin/activate.fish && pip3 install -r requirements.txt'
|
2021-01-07 14:23:59 +00:00
|
|
|
a vi nvim
|
2021-08-11 00:14:59 +00:00
|
|
|
a wallp 'gsettings set org.gnome.desktop.background picture-uri file://(realpath $argv);:'
|
2021-11-08 21:38:08 +00:00
|
|
|
a wm 'startx (which $argv[1]) $argv[2..-1]'
|
2021-12-31 19:29:17 +00:00
|
|
|
a ydl 'while not yt-dlp $argv; end;:'
|
2021-08-10 00:46:26 +00:00
|
|
|
|
2021-12-31 19:29:17 +00:00
|
|
|
a 7zstd '7z a -m0=zstd -mx22 -mmt=8 -mfb=273 -md=256m -ms=on (realpath $argv[1]).7z'
|
2021-07-25 04:19:15 +00:00
|
|
|
a compress '7z a -m0=flzma2 -mx9 -mmt=8 -mfb=273 -md=256m -ms=on (realpath $argv[1]).7z'
|
2021-02-25 21:54:50 +00:00
|
|
|
a dwarf 'mkdwarfs -i . -o $PWD.dwarfs'
|
2022-02-02 02:24:07 +00:00
|
|
|
a dwarfmount 'dwarfs -f $argv (mktemp -d | tee /dev/tty /dev/stderr 2>| clip);:'
|
2021-12-31 19:29:17 +00:00
|
|
|
a dwarfs 'dwarfs -o offset=auto -o tidy_strategy=swap'
|
2022-03-01 06:38:20 +00:00
|
|
|
a dwarfs2null 'dwarfsextract -o /dev/null -f ustar -i'
|
|
|
|
a dwarfs2tar 'dwarfsextract -o dwarfs-root.tar -f ustar -i'
|
2021-12-31 19:29:17 +00:00
|
|
|
a foldwarf 'appdwarf -f $argv .;:'
|
2021-02-25 21:54:50 +00:00
|
|
|
a redwarf 'mkdwarfs -o redwarf.dwarfs --recompress -i'
|
|
|
|
a squash 'mksquashfs . $PWD.squashfs -comp zstd -b 1M -Xcompression-level 22'
|
2021-03-06 23:40:15 +00:00
|
|
|
a undwarfs 'mkdir dwarfs-root; dwarfsextract -o dwarfs-root -i'
|
2022-05-19 03:47:32 +00:00
|
|
|
a xcompress 'fxz -T0 -9 -k'
|
|
|
|
a zipmount 'fuse-zip -f $argv (mktemp -d | tee /dev/tty /dev/stderr 2>| clip);:'
|
2021-01-07 14:23:59 +00:00
|
|
|
|
|
|
|
for i in (cat ~/.config/qutebrowser/quickmarks | cut -d ' ' -f1)
|
2022-04-11 16:39:19 +00:00
|
|
|
a $i "qutebrowser-profile --load $i \":open $i\""
|
2021-01-07 14:23:59 +00:00
|
|
|
end
|
|
|
|
|
2022-02-04 18:17:39 +00:00
|
|
|
for i in deemix nsz scdl soundscrape spleeter
|
2021-01-07 14:23:59 +00:00
|
|
|
a $i "pipx run $i"
|
|
|
|
end
|
2022-03-02 04:32:07 +00:00
|
|
|
|
|
|
|
function alpine
|
2022-05-19 03:47:32 +00:00
|
|
|
set url https://dl-cdn.alpinelinux.org/alpine/edge/releases/x86_64/
|
|
|
|
set file (curl $url | grep s-2 | tac | sed -n 3p | cut -d\" -f2)
|
2022-03-02 04:32:07 +00:00
|
|
|
mkdir alpine; curl $url/$file | tar xf - -Calpine
|
|
|
|
cp /etc/resolv.conf alpine/etc
|
|
|
|
proot -r alpine
|
|
|
|
end
|
|
|
|
funcsave alpine
|