feat: Ajout alias pour taskwarrior-tui

This commit is contained in:
Xavier Logerais 2024-06-28 09:00:56 +00:00
parent ce15f00b6f
commit 84ffaf33d2
2 changed files with 7 additions and 0 deletions

View File

@ -9,3 +9,8 @@ then
alias td='task done'
alias ts='task sync'
fi
if (command -v taskwarrior-tui &> /dev/null)
then
alias tu='taskwarrior-tui'
fi

View File

@ -1,5 +1,7 @@
#!/bin/bash
source $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh
if [ -f "$HOME"/.bash/profile ]; then source "$HOME"/.bash/profile; fi
if [ -d "$HOME"/.bash/profile ]; then for file in "$HOME"/.bash/profile/*; do source "$file"; done; fi
if [ -d "$HOME"/.bash/profile.d ]; then for file in "$HOME"/.bash/profile.d/*; do source "$file"; done; fi