Skip to content

Commit

Permalink
color and theme improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
NotM32 committed Feb 15, 2025
1 parent 3cc22bf commit 0ff8ee5
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 40 deletions.
6 changes: 3 additions & 3 deletions home/alacritty/colors.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[colors.primary]
# Henna Dark Alacritty Color Scheme
background = "#21272e"
background = "#14191e"
foreground = "#f8f8f0"

# Normal colors
Expand All @@ -16,7 +16,7 @@ white = "#f8f8f0"

# Bright colors
[colors.bright]
black = "#181A1F"
black = "#3a3a4c"
red = "#e74c3c"
green = "#53df83"
yellow = "#9cd230"
Expand All @@ -28,4 +28,4 @@ white = "#f8f8f0"
# Cursor colors
[colors.cursor]
text = "#21272e"
cursor = "#1abc9c"
cursor = "#1abc9c"
2 changes: 1 addition & 1 deletion home/alacritty/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
font = {
normal = { family = "Hack Nerd Font"; };
bold = { family = "Hack Nerd Font"; };
size = 8;
size = 9;
};
colors = (lib.importTOML ./colors.toml).colors;
terminal.shell = { program = "nu"; };
Expand Down
40 changes: 19 additions & 21 deletions home/hyprland/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{ pkgs, ... }: {

imports = [
./hyprlock.nix
./wofi.nix
./wpaperd.nix
./mako.nix
];
imports = [ ./hyprlock.nix ./wofi.nix ./wpaperd.nix ./mako.nix ];

home.packages = with pkgs; [
wayshot
Expand All @@ -31,7 +26,9 @@
"WLR_DRM_NO_ATOMIC,1"
]; # change to qt6ct if you have that

exec-once = [ "${pkgs.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1 &" ];
exec-once = [
"${pkgs.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1 &"
];

input = {
kb_layout = "us";
Expand All @@ -48,9 +45,9 @@

general = {
gaps_in = 5;
gaps_out = 20;
border_size = 2;
"col.active_border" = "rgba(33ccffee) rgba(00ff99ee) 45deg";
gaps_out = 15;
border_size = 1;
"col.active_border" = "rgba(ff6600ee) rgba(8f381aee) 45deg";
"col.inactive_border" = "rgba(595959aa)";

layout = "dwindle";
Expand All @@ -59,7 +56,7 @@
};

decoration = {
rounding = 4;
rounding = 0;

blur = {
enabled = true;
Expand Down Expand Up @@ -93,7 +90,7 @@
preserve_split = "yes";
};

gestures = { workspace_swipe = "off"; };
gestures = { workspace_swipe = "on"; };

misc = { force_default_wallpaper = 0; };

Expand All @@ -113,8 +110,7 @@
}
];

windowrulev2 =
"suppressevent maximize, class:.*";
windowrulev2 = "suppressevent maximize, class:.*";

"$mainMod" = "SUPER";

Expand Down Expand Up @@ -222,18 +218,22 @@
};

listener = [
{ timeout = 240;
{
timeout = 240;
on-timeout = "${pkgs.brightnessctl}/bin/brightnessctl -s set 10";
on-resume = "${pkgs.brightnessctl}/bin/brightnessctl -r";
}
{ timeout = 270;
{
timeout = 270;
on-timeout = "loginctl lock-session";
}
{ timeout = 300;
{
timeout = 300;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{ timeout = 600;
{
timeout = 600;
on-timeout = "systemctl suspend";
}
];
Expand All @@ -254,8 +254,6 @@
gtk.theme.name = "Adwaita-dark";

dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
"org/gnome/desktop/interface" = { color-scheme = "prefer-dark"; };
};
}
1 change: 0 additions & 1 deletion home/hyprland/hyprlock.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ ... }: {

programs.hyprlock = {
enable = true;
settings = {
Expand Down
14 changes: 0 additions & 14 deletions home/theme/default.nix

This file was deleted.

Empty file removed home/theme/tomorrow-night.nix
Empty file.

0 comments on commit 0ff8ee5

Please sign in to comment.