You are not logged in.
Pages: 1
HowTo maximumize space
close button - at top right
application menu - top left
title hidden for maximized window
Panel settings
Panel settings
Close button settings
Close button settings
Script close_active_window.sh
#!/bin/bash
WID=`xprop -root | grep "_NET_ACTIVE_WINDOW(WINDOW)" | cut -d# -f2 | cut -d, -f1`
if [ $WID != 0x0 ]
then
wmctrl -ic $WID
else
xfce4-session-logout
fi
Requires:
- wmctrl (sudo apt-get install wmctrl)
Last edited by adisk (2013-07-30 05:14:24)
Offline
Interesting, and likely of use to some. Simple, too. Thanks for contributing!
Regards,
MDM
Offline
Pages: 1
[ Generated in 0.009 seconds, 8 queries executed - Memory usage: 516.95 KiB (Peak: 518.23 KiB) ]