You are not logged in.
Pages: 1
Hello,
Coming from LXDE, where turning windows decorations on/off is very easy (via openbox config), I use Xfce now on a laptop and would like to turn all XFCE window decorations off, too (to save some space).
How can I do this?
Thanks!!
Offline
Create an empty xfwm4 theme:
mkdir -p $HOME/.themes/empty/xfwm4/
touch $HOME/.themes/empty/xfwm4/themerc
...and select the "empty" theme in Settings Manager > Windows Manager.
If you need to toggle off and on the decorations, bind a script like this to a keyboard shortcut:
#!/bin/bash
REGULAR="Greybird"
EMPTY="empty"
CURRENT=$(xfconf-query -c xfwm4 -p /general/theme)
if [ "$CURRENT" == "$REGULAR" ]; then
xfconf-query -c xfwm4 -p /general/theme -s "$EMPTY"
else
xfconf-query -c xfwm4 -p /general/theme -s "$REGULAR"
fi
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Create an empty xfwm4 theme:
mkdir -p $HOME/.themes/empty/xfwm4/ touch $HOME/.themes/empty/xfwm4/themerc
...and select the "empty" theme in Settings Manager > Windows Manager.
If you need to toggle off and on the decorations, bind a script like this to a keyboard shortcut:
#!/bin/bash REGULAR="Greybird" EMPTY="empty" CURRENT=$(xfconf-query -c xfwm4 -p /general/theme) if [ "$CURRENT" == "$REGULAR" ]; then xfconf-query -c xfwm4 -p /general/theme -s "$EMPTY" else xfconf-query -c xfwm4 -p /general/theme -s "$REGULAR" fi
ToZ, great... thanks!
Offline
Pages: 1
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 520.13 KiB (Peak: 521.41 KiB) ]