aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlista Kanjo2022-11-30 12:19:50 -0500
committerBlista Kanjo2022-11-30 12:19:50 -0500
commitab67167317988340356fa0345bfd7ac431cd9843 (patch)
tree76c752cd9379876086fa632d578a03a66cc455f1
parenta4827153a55c5b01bc5395f15b242db6b3c161c2 (diff)
refactor: removed bad practices
-rw-r--r--.config/fish/config.fish6
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