Skip to content

Commit

Permalink
minor theming tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasBenaets committed Dec 1, 2023
1 parent 6d44af9 commit 5d82645
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
| *Bar* | Eww + Waybar | Dock-to-Panel | Polybar | / |
| *Hotkeys* | Hyprland | / | Sxhkd | Skhd |
| *Launcher* | Wofi | Gnome | Rofi | / |
| *GTK Theme* | Catppuccin | Catppuccin / Adwaita | Catppuccin | / |
| *GTK Theme* | Orchis-Dark | Orchis-Dark / Adwaita | Orchis-Dark | / |
| *Notifications* | Dunst | Gnome | Dunst | / |
| *Terminal* | Kitty | Kitty | Kitty | Alacritty |
| *Used by host* | Desktop | Work | Laptop & VM | Macbook |
Expand Down
8 changes: 3 additions & 5 deletions modules/desktops/hyprland.nix
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,9 @@ with host;
decoration {
rounding=0
active_opacity=0.93
inactive_opacity=0.93
active_opacity=1
inactive_opacity=1
fullscreen_opacity=1
blur {
enabled=true
}
drop_shadow=false
}
Expand Down Expand Up @@ -228,6 +225,7 @@ with host;
dwindle {
pseudotile=false
force_split=2
preserve_split=true
}
misc {
Expand Down
10 changes: 10 additions & 0 deletions modules/editors/nvim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,11 @@
nvim-autopairs.enable = true;
telescope = {
enable = true;
extraOptions = {
pickers.find_files = {
hidden = true;
};
};
keymaps = {
"<leader>ff" = "find_files";
"<leader>fg" = "live_grep";
Expand Down Expand Up @@ -382,6 +387,11 @@
'';
extraConfigLuaPre = ''
require('orgmode').setup_ts_grammar()
require('onedarkpro').setup({
colors = {
bg = "#111111",
}
})
'';
};
}
3 changes: 3 additions & 0 deletions modules/programs/kitty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
theme = "Afterglow";
settings = {
confirm_os_window_close=0;
enable_audio_bell="no";
resize_debounce_time="0";
background="#111111";
};
};
};
Expand Down
14 changes: 8 additions & 6 deletions modules/theming/theming.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@
enable = true;
theme = {
#name = "Dracula";
name = "Catppuccin-Mocha-Compact-Blue-Dark";
#name = "Catppuccin-Mocha-Compact-Blue-Dark";
name = "Orchis-Dark-Compact";
#package = pkgs.dracula-theme;
package = pkgs.catppuccin-gtk.override {
accents = ["blue"];
size = "compact";
variant = "mocha";
};
# package = pkgs.catppuccin-gtk.override {
# accents = ["blue"];
# size = "compact";
# variant = "mocha";
# };
package = pkgs.orchis-theme;
};
iconTheme = {
name = "Papirus-Dark";
Expand Down

0 comments on commit 5d82645

Please sign in to comment.