28 lines
937 B
Fish
28 lines
937 B
Fish
|
if status is-interactive
|
||
|
set fish_greeting
|
||
|
alias sv="ssh root@kvj.ovh"
|
||
|
alias mpv="flatpak run io.mpv.Mpv"
|
||
|
alias gimp="flatpak run org.gimp.GIMP"
|
||
|
alias libreoffice="flatpak run org.libreoffice.LibreOffice"
|
||
|
alias code="flatpak run com.vscodium.codium"
|
||
|
alias pkg-update="doas emerge --update --newuse --deep --with-bdeps=y @world && flatpak update"
|
||
|
alias pkg-sync="doas emerge --sync"
|
||
|
alias pkg-clean="doas emerge --depclean"
|
||
|
alias pkg-full="pkg-sync && pkg-update && pkg-clean"
|
||
|
alias cls="clear"
|
||
|
alias update-grub="grub-mkconfig -o /boot/grub/grub.cfg"
|
||
|
alias flp-list="flatpak list --app"
|
||
|
alias flp-install="flatpak install"
|
||
|
alias flp-update="flatpak update"
|
||
|
alias pkg-list="cat /var/lib/portage/world && echo '' && flp-list && echo '' && cat /var/lib/portage/world | wc -l && flatpak list --app | wc -l"
|
||
|
|
||
|
clear
|
||
|
|
||
|
end
|
||
|
|
||
|
if status --is-login
|
||
|
if test -z "$DISPLAY" -a $XDG_VTNR = 1
|
||
|
exec dbus-run-session Hyprland
|
||
|
end
|
||
|
end
|