1config BR2_PACKAGE_WMCTRL 2 bool "wmctrl" 3 depends on BR2_PACKAGE_XORG7 4 depends on BR2_USE_WCHAR # libglib2 5 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 6 depends on BR2_USE_MMU # libglib2 7 select BR2_PACKAGE_XLIB_LIBX11 8 select BR2_PACKAGE_XLIB_LIBXMU 9 select BR2_PACKAGE_LIBGLIB2 10 help 11 Provides command line access to almost all the features 12 defined in the EWMH specification. It can be used, for 13 example, to get information about the window manager, to get 14 a detailed list of desktops and managed windows, to switch 15 and resize desktops, to make windows full-screen, 16 always-above or sticky, and to activate, close, move, 17 resize, maximize and minimize them. 18 19 https://sites.google.com/site/tstyblo/wmctrl/ 20 21comment "wmctrl needs a toolchain w/ wchar, threads" 22 depends on BR2_USE_MMU 23 depends on BR2_PACKAGE_XORG7 24 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 25