Skip to content

Instantly share code, notes, and snippets.

@zenozeng
Created February 9, 2014 11:28
Show Gist options
  • Save zenozeng/8897839 to your computer and use it in GitHub Desktop.
Save zenozeng/8897839 to your computer and use it in GitHub Desktop.
remove title bar using xprop
xprop -id $xid -f _MOTIF_WM_HINTS 32c -set _MOTIF_WM_HINTS "0x2, 0x0, 0x0, 0x0, 0x0"
@zachliu
Copy link

zachliu commented Aug 25, 2019

I replaced $xid with $(xdotool getactivewindow):

  xprop \
    -id $(xdotool getactivewindow) \
    -f _MOTIF_WM_HINTS 32c \
    -set _MOTIF_WM_HINTS "0x2, 0x0, 0x0, 0x0, 0x0"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment