Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 601942 - xfce-base/xfwm4: MONITOR_ROOT_PIXMAP option
Summary: xfce-base/xfwm4: MONITOR_ROOT_PIXMAP option
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: XFCE Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-12-07 21:50 UTC by manwe
Modified: 2016-12-08 06:15 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
ebuild (xfwm4-4.12.3-r1.ebuild,1.80 KB, text/plain)
2016-12-07 21:50 UTC, manwe
Details

Note You need to log in before you can comment on or make changes to this bug.
Description manwe 2016-12-07 21:50:18 UTC
Created attachment 455470 [details]
ebuild

Xfwm4 can work as a standalone window manager without most of the Xfce. However, by default, it doesn't consider root pixmap (wallpaper), thus displaying gray background if xfdesktop is not running. 

But this option can be switched on with -DMONITOR_ROOT_PIXMAP=1, allowing you to have wallpaper of your selection, set for example with feh. 

In attachmant you can find my ebuild where I've added "rootpixmap" USE flag and function src_compile. 

src_compile() {
    if use rootpixmap; then
        emake CFLAGS="${CFLAGS} -DMONITOR_ROOT_PIXMAP=1" || die
    else
        emake CFLAGS="${CFLAGS}" || die
    fi
}