1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2025-11-27 14:45:50 +00:00

Fish: autoload java, zip.xz for indexing

This commit is contained in:
Phantop 2020-01-11 13:50:01 -05:00
parent a0c2f24c26
commit ba3b3cc725
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
# PATHS # # PATHS #
set fish_user_paths $D/Tools/bin $ANDROID_HOME/platform-tools /sbin /bin /usr/sbin /usr/bin set fish_user_paths $D/Tools/bin $ANDROID_HOME/platform-tools /sbin /bin /usr/sbin /usr/bin /run/media/$USER/disk/jdk/bin
set fish_function_path $fish_function_path $D/Games/Minecraft/Game/functions set fish_function_path $fish_function_path $D/Games/Minecraft/Game/functions
# PROGRAM SETTINGS # # PROGRAM SETTINGS #

View file

@ -1,9 +1,9 @@
# Defined in /tmp/fish.9jgIQP/xcompress.fish @ line 2 # Defined in /tmp/fish.JK2lNx/xcompress.fish @ line 2
function xcompress function xcompress
if test -d $argv if test -d $argv
tar -cf $argv.tar $argv tar -0r $argv.zip $argv
xz -efvk9T 0 $argv.tar xz -efvk9T 0 $argv.zip
rm $argv.tar rm $argv.zip
else else
xz -efvk9T 0 $argv xz -efvk9T 0 $argv
end end