Skip to content

Commit

Permalink
[compiz-ubuntu] Fix pgrep regex in compiz.reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiao-Long Chen committed Jan 7, 2013
1 parent eb7e7b6 commit 847f1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiz-ubuntu/compiz.reset
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [ "x${PROCEED}" == "xy" ] || [ "x${PROCEED}" == "xY" ]; then

# Wait for Compiz to exit
echo -n "Waiting for Compiz to exit..."
while $(pgrep compiz &>/dev/null); do
while $(pgrep compiz$ &>/dev/null); do
sleep 0.1
done
echo "DONE"
Expand Down

0 comments on commit 847f1cd

Please sign in to comment.