Adding Fixed SH Script For Acctive Window
This commit is contained in:
parent
573c74ba5b
commit
471c22cfd2
10
linux.sh
Normal file
10
linux.sh
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# replace this linux.sh with the one packaged with node-active-window
|
||||||
|
len=$(echo -n "$(xdotool getwindowfocus getwindowname)" | wc -m)
|
||||||
|
max_len=70
|
||||||
|
if [ "$len" -gt "$max_len" ];then
|
||||||
|
echo -n "$(xdotool getwindowfocus getwindowname | cut -c 1-$max_len)..."
|
||||||
|
else
|
||||||
|
echo -n "$(xdotool getwindowfocus getwindowname)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user