summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-05-08 16:57:17 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit3fa4a1145d71cda91d2945874a430d0dc638e249 (patch)
tree44e306ec2fa91bc7b2e5d4bf3f3789be07c701f0
parent8bd9d120477889179aff683c7f8e396bbbc77656 (diff)
feat(zsh): add alias to kill kodi
-rw-r--r--dot_zshrc.tmpl6
1 files changed, 6 insertions, 0 deletions
diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl
index 0082758..5cd0ff0 100644
--- a/dot_zshrc.tmpl
+++ b/dot_zshrc.tmpl
@@ -103,5 +103,11 @@ alias ll='exa -l --color=always --group-directories-first' # long format
alias lt='exa -aT --color=always --group-directories-first' # tree listing
alias l.='exa -a | egrep "^\."'
+# Kill Kodi with one command
+alias killkodi='kill -9 $(ps aux | grep /usr/lib/x86_64-linux-gnu/kodi/kodi.bin -m 1 | tr -s ' ' | cut -d ' ' -f 2)'
+
+# ASDF Bootstrap
+. "$HOME/.asdf/asdf.sh"
+
# Load Starship
eval "$(starship init zsh)"