Restart script after running if command
This commit is contained in:
parent
ebe59405e3
commit
3e524caf6e
1 changed files with 4 additions and 1 deletions
|
@ -102,7 +102,10 @@ case $selection in
|
||||||
if [[ -n $selection ]]; then
|
if [[ -n $selection ]]; then
|
||||||
[[ -n $list_raw ]] && list_raw="${list_raw}${NL}"
|
[[ -n $list_raw ]] && list_raw="${list_raw}${NL}"
|
||||||
list_raw=`printf "%s%s %s\n" "$list_raw" "$EMPTY_RAW" "$selection"`
|
list_raw=`printf "%s%s %s\n" "$list_raw" "$EMPTY_RAW" "$selection"`
|
||||||
fi ;;
|
fi
|
||||||
|
exit ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
printf "%s\n" "$list_raw" >| $FILE
|
printf "%s\n" "$list_raw" >| $FILE
|
||||||
|
|
||||||
|
rofi-checklist
|
||||||
|
|
Reference in a new issue