diff options
| author | Blista Kanjo | 2022-09-01 20:03:35 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-09-01 20:03:35 -0400 |
| commit | a208eadd1289461bab82dd9554a2316898e7d23d (patch) | |
| tree | dc52940c6271490f2df6bd58f4edf9ec16f7b7df /.config/fish/config.fish | |
| parent | 77051c67db148b81aadaa562dbbbfff9e5f69bef (diff) | |
refactor: organized the entire repo | feat: added pomodoro aliases inspired by bashbunni
Diffstat (limited to '.config/fish/config.fish')
| -rw-r--r-- | .config/fish/config.fish | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..1201b03 --- /dev/null +++ b/.config/fish/config.fish @@ -0,0 +1,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 |
