blob: 3ea5fb389d7612a6d53d4d024423c0a194b63b42 (
plain) (
blame)
1
2
3
4
|
#!/bin/bash
WINDOWID=${1:-$(xdotool getwindowfocus)}
WIDTH=$(xdotool getwindowgeometry -s ${WINDOWID} | grep WIDTH | cut -d ' ' -f 2)
dmenu_run -w ${1:-$(xdotool getwindowfocus)} -c
|