diff --git a/.zshrc b/.zshrc index 389b57a..085339b 100644 --- a/.zshrc +++ b/.zshrc @@ -176,13 +176,13 @@ _alias(){ # ─< t stands for tmux >──────────────────────────────────────────────────────────────────── if command_exists tmux; then - tmux_y="-- tmux-session active! | connecting to active session --" - tmux_n="-- no tmux-session found! | creating one --" + local tmux_y="-- tmux-session active! | connecting to active session --" + local tmux_n="-- no tmux-session found! | creating one --" ta() { command tmux list-sessions >/dev/null 2>&1 if [ $? -eq 0 ]; then if command_exists notify-send; then - notify-send "$tmux_y" + notify-send "TMUX" "$tmux_y" sleep 0.5 tmux attach else @@ -192,7 +192,7 @@ _alias(){ fi else if command_exists notify-send; then - notify-send "$tmux_n" + notify-send "TMUX" "$tmux_n" sleep 0.5 tmux else @@ -437,7 +437,7 @@ get_packager() { remove="" . /etc/os-release case "$ID" in - ubuntu | debian | pop) + ubuntu | debian | pop | kali) if command_exists nala; then search="nala search" install="nala install --assume-yes"