Skip to content

Commit

Permalink
Set the default cursor theme to breeze_cursors
Browse files Browse the repository at this point in the history
Summary: Currently the cursor theme is not set by anything, so it's Adwaita by default.

Test Plan: New user account has "Breeze" as cursor theme in kde-gtk-config.

Reviewers: #plasma, ngraham

Reviewed By: ngraham

Subscribers: ngraham, broulik, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D17187
  • Loading branch information
Vogtinator committed Apr 5, 2019
1 parent 1950371 commit b00e12f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kconf_update/main.cpp
Expand Up @@ -133,6 +133,7 @@ int setGtk2()
out << QStringLiteral(" font_name=\"Noto Sans Regular\"\n");
out << QStringLiteral("}\n");
out << QStringLiteral("widget_class \"*\" style \"user-font\"\n");
out << QStringLiteral("gtk-cursor-theme-name=\"breeze_cursors\"\n");
out << QStringLiteral("gtk-font-name=\"Noto Sans Regular 10\"\n"); // matches plasma-workspace:startkde/startkde.cmake
out << QStringLiteral("gtk-theme-name=\"Breeze\"\n");
out << QStringLiteral("gtk-icon-theme-name=\"breeze\"\n");
Expand Down Expand Up @@ -175,6 +176,7 @@ int setGtk3()
}
QTextStream out(&gtkrc3writer);
out << QStringLiteral("[Settings]\n");
out << QStringLiteral("gtk-cursor-theme-name=breeze_cursors\n");
out << QStringLiteral("gtk-font-name=Noto Sans 10\n"); // matches plasma-workspace:startkde/startkde.cmake
out << QStringLiteral("gtk-theme-name=")+gtk3Theme+QStringLiteral("\n");
out << QStringLiteral("gtk-icon-theme-name=breeze\n");
Expand Down

0 comments on commit b00e12f

Please sign in to comment.