more rice

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-08-20 22:21:16 -05:00
parent d131b304da
commit 8b49688deb
5 changed files with 37 additions and 20 deletions

View file

@ -3,11 +3,11 @@
imports = [ imports = [
./theme.nix ./theme.nix
./hyprland.nix ./hyprland.nix
./hyprlock.nix
./hyprpanel.nix ./hyprpanel.nix
./hyprpolkitagent.nix ./hyprpolkitagent.nix
# ./quickshell.nix # ./quickshell.nix # TODO replace hyprpanel with custom quickshell...
./wofi.nix ./wofi.nix
# ./swaync.nix # ./swaync.nix # notifications, hyprpanel has notifications but I want to replace hyprpanel sometime so keeping this here as reference
./swaylock.nix
]; ];
} }

View file

@ -92,7 +92,7 @@ in
"$mainMod, Return, exec, ${cfg.terminalCommand}" "$mainMod, Return, exec, ${cfg.terminalCommand}"
"$mainMod, Space, exec, pkill wofi || wofi --show drun" "$mainMod, Space, exec, pkill wofi || wofi --show drun"
"$mainMod, q, killactive" "$mainMod, q, killactive"
"$mainMod SHIFT, q, exec, hyprlock" "$mainMod SHIFT, q, exec, swaylock"
"$mainMod, f, togglefloating" "$mainMod, f, togglefloating"
"$mainMod, g, pseudo" "$mainMod, g, pseudo"
"$mainMod, t, togglesplit" "$mainMod, t, togglesplit"
@ -129,7 +129,7 @@ in
bindr = [ bindr = [
# overview # overview
"$mainMod, SUPER_L, overview:toggle, all" "$mainMod, SUPER_L, overview:toggle"
]; ];
binde = [ binde = [

View file

@ -1,12 +0,0 @@
{
...
}:
{
programs.hyprlock = {
enable = true;
settings = {
hide_cursor = true;
# no_fade_in = true;
};
};
}

View file

@ -58,8 +58,6 @@
"workspaces" "workspaces"
"media" "media"
"volume" "volume"
"systray"
"cava"
]; ];
middle = [ middle = [
@ -88,7 +86,10 @@
middle = [ middle = [
"clock" "clock"
]; ];
right = [ ]; right = [
"systray"
"cava"
];
}; };
}; };
bar.workspaces = { bar.workspaces = {
@ -98,6 +99,7 @@
showWsIcons = true; showWsIcons = true;
showApplicationIcons = false; showApplicationIcons = false;
workspaceMask = true; workspaceMask = true;
numbered_active_indicator = "highlight";
workspaceIconMap = { workspaceIconMap = {
"1" = ""; # "1" いち | ひとつ "1" = ""; # "1" いち | ひとつ
"2" = ""; # "2" に | ふたつ "2" = ""; # "2" に | ふたつ
@ -109,6 +111,16 @@
"8" = ""; # "8" はち | やっつ "8" = ""; # "8" はち | やっつ
"9" = ""; # "9" きゅう | ここのつ "9" = ""; # "9" きゅう | ここのつ
"10" = ""; # "10" じゅう | とお "10" = ""; # "10" じゅう | とお
"11" = ""; # "11" じゅういち | じゅうひとつ
"12" = ""; # "12" じゅうに | じゅうふたつ
"13" = ""; # "13" じゅうさん | じゅうみっつ
"14" = ""; # "14" じゅうし | じゅうよん
"15" = ""; # "15" じゅうご | じゅういつつ
"16" = ""; # "16" じゅうろく | じゅうむっつ
"17" = ""; # "17" じゅうしち | じゅうななつ
"18" = ""; # "18" じゅうはち | じゅうやっつ
"19" = ""; # "19" じゅうきゅう | じゅうここのつ
"20" = ""; # "20" にじゅう | にじっつ
}; };
}; };
notifications.ignore = [ "spotify" ]; notifications.ignore = [ "spotify" ];

View file

@ -0,0 +1,17 @@
{
...
}:
{
programs.swaylock = {
enable = true;
settings = {
color = "#000000";
indicator-caps-lock = true;
indicator-idle-visible = true;
indicator-radius = 100;
indicator-thickness = 10;
font = "JetBrainsMono Nerd Font Regular";
font-size = 20;
};
};
}