improve git prompt and plan hyprland

This commit is contained in:
SALVI Jérémie
2024-08-16 18:54:42 +02:00
parent ceda24609a
commit dc0665f09e
2 changed files with 9 additions and 2 deletions

7
TODO
View File

@@ -1,3 +1,10 @@
install steam, wine and lib32 multilib
pipwire-pulseaudio as root to X11
configure ranger
## Hyprland
wofi
foot
screen-sharing
waybar
hyprland
screen-capture

View File

@@ -12,7 +12,7 @@ _git () {
printf " %s " "$(git branch --show-current)"
if (( _MODIFIED == 0 )) && (( _UNTRACKED == 0 )) && (( _AHEAD == 0 )) && (( _BEHIND == 0 ))
then
printf ""
printf " "
exit 0
fi
if (( _MODIFIED > 0 ))
@@ -27,7 +27,7 @@ _git () {
printf "%s " "$_AHEAD"
fi
if (( _BEHIND > 0 )); then
printf "%s" "$_BEHIND"
printf "%s " "$_BEHIND"
fi
fi
}