From 94bc1ee9818014d576ddf26b5e8129496a6f2da1 Mon Sep 17 00:00:00 2001 From: gabrielfin Date: Sat, 8 Jun 2019 14:15:46 -0300 Subject: [PATCH] [window-buttons] Add /usr/local/share to theme lookup --- window-buttons-applet/window-buttons-theme.vala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/window-buttons-applet/window-buttons-theme.vala b/window-buttons-applet/window-buttons-theme.vala index 8faa263..e4e6edf 100644 --- a/window-buttons-applet/window-buttons-theme.vala +++ b/window-buttons-applet/window-buttons-theme.vala @@ -56,6 +56,8 @@ namespace WindowWidgets { Environment.get_home_dir() + "/.icons/mate-window-applets/" + _theme_name, Environment.get_home_dir() + "/.themes/" + _theme_name + "/metacity-1", Environment.get_home_dir() + "/.themes/" + _theme_name + "/unity", + "/usr/local/share/themes/" + _theme_name + "/metacity-1", + "/usr/local/share/themes/" + _theme_name + "/unity", "/usr/share/themes/" + _theme_name + "/metacity-1", "/usr/share/themes/" + _theme_name + "/unity" };