You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/gnome-base/gnome-session/files/90-xcursor-theme-gnome

12 lines
384 B

#!/bin/sh
if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then
XCURSOR_THEME=`dconf read /org/gnome/desktop/interface/cursor-theme` 2> /dev/null
if [ x"$XCURSOR_THEME" = "x" ]; then
export XCURSOR_THEME="Adwaita"
else
# 'dconf read' wraps string output in single quotes
eval export "XCURSOR_THEME=$XCURSOR_THEME"
fi
fi