blob: 1201b03a7c5f95730276ec40221e1484b645dc40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if status is-interactive
# Commands to run in interactive sessions can go here
alias ls="lsd --group-dirs first -h --icon-theme unicode -L"
alias s="cd ~/.local/share/scripts && lsd --group-dirs first -h --icon-theme unicode -L"
alias d="disown"
alias c="cal"
alias work="timer 30m && notify-send 'Pomodoro' 'Work Timer is up! Take a Break 😊' -i '/home/kylert/.cache/pomo/pomo-tomato.png' -t 30000 -w -A 'Dismiss' & disown; mpv '/home/kylert/.cache/pomo/pomo-sound.mp3'"
alias rest="timer 10m && notify-send 'Pomodoro' 'Break is over! Get back to work 😬' -i '/home/kylert/.cache/pomo/pomo-tomato.png' -t 30000 -w -A 'Dismiss' & disown; mpv '/home/kylert/.cache/pomo/pomo-sound.mp3'"
export PF_INFO="ascii title os kernel uptime pkgs memory"
end
|