diff --git a/fake_home/.sofi.sh b/fake_home/.sofi.sh index 572ab68..1359bfc 100755 --- a/fake_home/.sofi.sh +++ b/fake_home/.sofi.sh @@ -84,7 +84,7 @@ add-recent() { return fi echo "$1" >> "$RECENTS" - tail -n 10 "$RECENTS" > "$RECENTS.temp" + grep -v "^$" "$RECENTS" | tail -n 10 "$RECENTS" > "$RECENTS.temp" mv "$RECENTS.temp" "$RECENTS" } @@ -127,6 +127,7 @@ fi if [[ "$1" == "" ]]; then choice="$(cat \ <(recent) \ + <(echo -e "Recents:\n") \ <(system_info) \ <(windows) \ <($HOME/.rofi-list-git-repos.py --no-icon) \