Compare commits

..

3 Commits

2 changed files with 6 additions and 1 deletions

View File

@ -18,6 +18,10 @@ function helpdef {
return 1
}
function wait-for {
while ! $@; do sleep 1; done
}
function slides() {
OLD_PATH="$PATH"
PATH="$HOME/.slides-bin:$PATH"

View File

@ -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) \