aboutsummaryrefslogtreecommitdiff
path: root/.config/fish
diff options
context:
space:
mode:
authorBlista Kanjo2022-09-09 13:42:07 -0400
committerBlista Kanjo2022-09-09 13:42:07 -0400
commit62f8b6f6a9e934bd3f9092530a10bbe546ff383b (patch)
treec6f6047e57507bf71d1991cc273dfc9febe629e0 /.config/fish
parent3c70da707d85b08145f7e7b02fa8c2e46b5650b2 (diff)
feat: using more of the rust uutils since it's been working well so far and better organization of my fish config
Diffstat (limited to '.config/fish')
-rw-r--r--.config/fish/config.fish36
1 files changed, 29 insertions, 7 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish
index 1201b03..6c8a3ea 100644
--- a/.config/fish/config.fish
+++ b/.config/fish/config.fish
@@ -1,13 +1,35 @@
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"
+
+ # Personal Aliases
+ alias s="cd ~/.local/share/scripts && lsd --group-dirs first -h --icon-theme unicode -L"
+ alias d="disown"
+ alias c="cal"
+
+ # Pomodoro Timer Aliases | Thanks to @bashbunni and @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'\
+ & 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'"
+
+ # Command Substitutions | I'm trying out the Rust Coreutils Re-write via the coreutils-hybrid package
+ alias echo="uu-echo"
+ alias ls="lsd --group-dirs first -h --icon-theme unicode -L"
+ alias pwd="uu-pwd"
+ alias groups=uu-groups
+ alias kill=uu-kill
+
+ # Plan9 Utils Command Substitutions
+ alias sort="9 sort"
+
+ # Environment Variable Declarations
+ export PF_INFO="ascii title os kernel uptime pkgs memory"
end