You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
584 B
Fish

alias wificonnect='nmcli connection up'
alias nix-shell='nix-shell --command fish'
set PATH ~/.bin $PATH
if test "$TERMINAL" = 'termite'
set TERM xterm-color
end
function on_exit --on-event fish_exit
if test (status -f) = 'Standard input';
set byebyes "bravo six, going dark" "bye bye" "ight, imma head out" "see ya!" "I'LL BE BACK" "my job here is done"
echo $byebyes[(random 1 (count $byebyes))]
end
end
function random_iasip
set folge (find "/home/anton/movies/IASIP S1-10/" -iname "*.mkv" | shuf -n 1)
env VLC_VERBOSE=0 vlc "$folge" 2> /dev/null
end