diff options
| author | Blista Kanjo | 2022-11-30 12:19:50 -0500 |
|---|---|---|
| committer | Blista Kanjo | 2022-11-30 12:19:50 -0500 |
| commit | ab67167317988340356fa0345bfd7ac431cd9843 (patch) | |
| tree | 76c752cd9379876086fa632d578a03a66cc455f1 /.config | |
| parent | a4827153a55c5b01bc5395f15b242db6b3c161c2 (diff) | |
refactor: removed bad practices
Diffstat (limited to '.config')
| -rw-r--r-- | .config/fish/config.fish | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index dc29137..d1b52b1 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -9,15 +9,15 @@ if status is-interactive alias w="curl wttr.in" alias x="startx" - # Pomodoro Timer Aliases | Thanks to @bashbunni and @caarlos0 + # Pomodoro Timer Aliases | Inspired by @bashbunni Timer by @caarlos0 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'\ + ~/.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'\ + ~/.cache/pomo/pomo-tomato.png -t 30000 -w -A 'Dismiss'\ & disown; mpv '/home/kylert/.cache/pomo/pomo-sound.mp3'" # Command Substitutions | I'm trying out the Rust Coreutils Re-write via the coreutils-hybrid package |
