Tagged Questions
4
votes
1answer
252 views
awesome wm: pop yes/no dialog when killing a window
In awesome wm when I press mod-q I kill the current window. I would like to pop a yes/no dialog to confirm the action:
if zenity --question --title='Quit?' --text='Quit?'; then kill_the_window; fi
...