Window Color Inverter

+lastfix: forgot to grep -w for window-id to avoid false-positves
This commit is contained in:
Que Quotion 2014-01-06 23:44:12 +09:00
parent b74ca2b6aa
commit 1bc543e5d2
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ elif [ "$1" = "focused" ]; then
# Ensure we are tracking focus
${compton_dbus}opts_set string:track_focus boolean:true &
window=$(${compton_dbus}find_win string:focused | $SED -n 's/^[[:space:]]*'${type_win}'[[:space:]]*\([[:digit:]]*\).*/\1/p') # Query compton for the active window
elif [ -n "$(${compton_dbus}list_win | grep "$1")" ]; then
elif [ -n "$(${compton_dbus}list_win | grep -w "$1")" ]; then
window="$1"
else
echo "$0" "[ selected | focused | window-id ]"