summaryrefslogtreecommitdiffstats
path: root/rules/xorg-cursor.in
blob: cabf43cf2774850684a8631914e8ebb2070594a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
menuconfig XORG_CURSOR
	tristate
	prompt "xorg cursor themes    "
	select XORG_LIB_X11_CURSOR
	select XORG_LIB_XCURSOR

source "rules/xcursor-transparent-theme.in"

choice
	prompt "default cursor theme"
	depends on XORG_CURSOR

	config XORG_CRUSOR_NONE
		bool "no theme"

	config XORG_CURSOR_XCURSOR_TRANSPARENT_THEME
		bool "xcursor-transparent-theme"
		depends on XCURSOR_TRANSPARENT_THEME

endchoice

config XORG_CURSOR_THEME
	string
	default "core"                if XORG_CRUSOR_NONE
	default "xcursor-transparent" if XORG_CURSOR_XCURSOR_TRANSPARENT_THEME