Commit cc1bcf3
Changed files (3)
.config
matugen
templates
tmux
.config/matugen/templates/gtk-colors.css
@@ -0,0 +1,27 @@
+/*
+* GTK Colors
+* Generated with Matugen
+*/
+
+* {
+ font-weight: 500;
+}
+
+@define-color accent_color {{colors.primary_fixed_dim.default.hex}};
+@define-color accent_fg_color {{colors.on_primary_fixed.default.hex}};
+@define-color accent_bg_color {{colors.primary_fixed_dim.default.hex}};
+@define-color window_bg_color {{colors.surface_dim.default.hex}};
+@define-color window_fg_color {{colors.on_surface.default.hex}};
+@define-color headerbar_bg_color {{colors.surface_dim.default.hex}};
+@define-color headerbar_fg_color {{colors.on_surface.default.hex}};
+@define-color popover_bg_color {{colors.surface_dim.default.hex}};
+@define-color popover_fg_color {{colors.on_surface.default.hex}};
+@define-color view_bg_color {{colors.surface.default.hex}};
+@define-color view_fg_color {{colors.on_surface.default.hex}};
+@define-color card_bg_color {{colors.surface.default.hex}};
+@define-color card_fg_color {{colors.on_surface.default.hex}};
+@define-color sidebar_bg_color @window_bg_color;
+@define-color sidebar_fg_color @window_fg_color;
+@define-color sidebar_border_color @window_bg_color;
+@define-color sidebar_backdrop_color @window_bg_color;
+
.config/matugen/config.toml
@@ -33,3 +33,8 @@ post_hook = 'tmux source-file ~/.config/tmux/tmux.conf'
input_path = '~/.config/matugen/templates/terminal-sequences'
output_path = "~/.cache/terminal-sequences"
post_hook = "sed -i '/]11;/d' ~/.cache/terminal-sequences && cat ~/.cache/terminal-sequences > /dev/pts/[0-9]*"
+
+[templates.gtk3]
+input_path = '~/.config/matugen/templates/gtk-colors.css'
+output_path = '~/.config/gtk-3.0/gtk.css'
+post_hook = 'gsettings set org.gnome.desktop.interface gtk-theme ""; gsettings set org.gnome.desktop.interface gtk-theme adw-gtk3-{{mode}}'
.config/tmux/keybinds.conf
@@ -41,3 +41,4 @@ bind C-p display-menu -T "#[align=centre]Dev Menu" \
"" \
"Edit Dotfiles" d "new-window -c ~ 'cd dotfiles && nvim .'" \
"Edit .zshrc" z "display-popup -E 'nvim ~/.zshrc'" \
+ "Terminal" t "display-popup -d '#{pane_current_path}' -E 'zsh'" \