Skip to content

Commit

Permalink
theme: some quick changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zeapoz committed Apr 3, 2024
1 parent 601a2d7 commit df47ce4
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 29 deletions.
2 changes: 1 addition & 1 deletion config/eww/eww.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.bar,
.bar2 {
color: $fg;
background-color: $bg;
background-color: #16161D;
}

.module {
Expand Down
6 changes: 3 additions & 3 deletions config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ local function set_padding(window, value)
window:set_config_overrides(overrides)
end

local default_opacity = 0.7
local default_opacity = 1
local function toggle_opacity(window)
local overrides = window:get_config_overrides() or {}
if not overrides.window_background_opacity then
overrides.window_background_opacity = 1.0
overrides.window_background_opacity = 0.7
else
overrides.window_background_opacity = nil
end
Expand All @@ -46,7 +46,7 @@ return {
"FiraCode Nerd Font",
"Font Awesome 6 Free Solid",
}),
font_size = 11.0,
font_size = 12.0,
force_reverse_video_cursor = true,
colors = {
foreground = "#dcd7ba",
Expand Down
36 changes: 18 additions & 18 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions modules/desktop/hyprland/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ in {
}
decoration {
rounding=10
rounding=0
blur {
enabled=true
Expand All @@ -66,7 +66,7 @@ in {
}
animations {
enabled=true
enabled=false
animation=windows,1,1,default,slide
animation=windowsOut,1,2,default,slide
Expand Down Expand Up @@ -129,7 +129,8 @@ in {
mfact=0.6
new_is_master=false
new_on_top=true
no_gaps_when_only=true
no_gaps_when_only=2
orientation=right
}
bind=SUPER,n,layoutmsg,cyclenext
Expand Down
8 changes: 4 additions & 4 deletions modules/theme/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ in {
size = 12;
};
iconTheme = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
name = "Kanagawa";
package = pkgs.kanagawa-icon-theme;
};
theme = {
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
name = "Kanagawa-BL";
package = pkgs.kanagawa-gtk-theme;
};
};
};
Expand Down

0 comments on commit df47ce4

Please sign in to comment.