diff --git a/linux.sh b/linux.sh new file mode 100644 index 0000000..9ee3e60 --- /dev/null +++ b/linux.sh @@ -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 + +