Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gtk3/theme/settings.ini.em
diff options
context:
space:
mode:
Diffstat (limited to 'gtk3/theme/settings.ini.em')
-rw-r--r--gtk3/theme/settings.ini.em36
1 files changed, 36 insertions, 0 deletions
diff --git a/gtk3/theme/settings.ini.em b/gtk3/theme/settings.ini.em
new file mode 100644
index 0000000..f4d6369
--- /dev/null
+++ b/gtk3/theme/settings.ini.em
@@ -0,0 +1,36 @@
+${
+
+# These sizes are copied from gtk2 rc files ...
+if scaling == "100":
+ icon_base = 11
+else: # About 72% of the XO size, adjusted so that eg. toolbuttons work
+ icon_base = 8 # 7.92
+
+icon_small = icon_base * 3
+icon_large = icon_base * 5
+
+}
+
+[Settings]
+#gtk-color-scheme = "base_color:#ffffff\nbg_color:#ededed\ntooltip_bg_color:#343434\nselected_bg_color:#4a90d9\ntext_color:#2e3436\nfg_color:#2e3436;\ntooltip_fg_color:#ffffff\nselected_fg_color:#ffffff"
+gtk-auto-mnemonics = 1
+gtk-toolbar-style = GTK_TOOLBAR_ICONS
+
+${
+icon_small = icon_base * 3
+icon_large = icon_base * 5
+
+small_icons = [ "gtk-menu", "gtk-dnd", "gtk-small-toolbar", "gtk-button" ]
+large_icons = [ "gtk-large-toolbar" ]
+
+icon_sizes = []
+for icon in small_icons:
+ icon_sizes += [icon + "=" + str(icon_small) + ',' + str(icon_small)]
+for icon in large_icons:
+ icon_sizes += [icon + "=" + str(icon_large) + ',' + str(icon_large)]
+
+icon_sizes = ":".join(icon_sizes)
+
+}
+gtk-icon-sizes=$icon_sizes
+