mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Fix hyprland move keybinds
This commit is contained in:
parent
0456b770b7
commit
8dbbe0f776
8 changed files with 39 additions and 34 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -164,11 +164,11 @@
|
|||
},
|
||||
"themes": {
|
||||
"locked": {
|
||||
"lastModified": 1701030543,
|
||||
"narHash": "sha256-wjGW7Zkzw3L/jBfg7pI7yzO5aVFspwUiZjByXftctlc=",
|
||||
"lastModified": 1701157732,
|
||||
"narHash": "sha256-q1EWrb1PLWEloHVKk4rl8wC2uTsiQxuhsok1sI3xBJw=",
|
||||
"owner": "RGBCube",
|
||||
"repo": "ThemeNix",
|
||||
"rev": "75f65de9384a0b3698e4cfa537a5f843a604cda6",
|
||||
"rev": "f51353fe8a47059e8019058ffc64c5dd4f60e662",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -12,7 +12,7 @@ homeConfiguration [ "nixos" "root" ] {
|
|||
};
|
||||
|
||||
programs.bat = with upkgs.theme; enabled {
|
||||
config.theme = slug;
|
||||
themes.${slug} = tmTheme;
|
||||
config.theme = "default";
|
||||
themes.default = tmTheme;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,8 +17,8 @@ homeConfiguration "nixos" {
|
|||
frame_width = 2;
|
||||
seperator_color = "frame";
|
||||
|
||||
background = background;
|
||||
foreground = lightForeground;
|
||||
background = base00;
|
||||
foreground = base05;
|
||||
|
||||
alignment = "center";
|
||||
font = "OpenSans 12";
|
||||
|
|
|
@ -17,12 +17,12 @@ homeConfiguration "nixos" {
|
|||
};
|
||||
|
||||
settings.colors = with upkgs.theme; {
|
||||
background = background + "FF";
|
||||
text = lightForeground + "FF";
|
||||
match = base0A + "FF";
|
||||
selection = lightForeground + "FF";
|
||||
selection-text = background + "FF";
|
||||
border = base0A + "FF";
|
||||
background = base00 + "FF";
|
||||
text = base05 + "FF";
|
||||
match = base0A + "FF";
|
||||
selection = base05 + "FF";
|
||||
selection-text = base00 + "FF";
|
||||
border = base0A + "FF";
|
||||
};
|
||||
|
||||
settings.border = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, pkgs, systemConfiguration, homeConfiguration, enabled, ... }: lib.recursiveUpdate
|
||||
{ lib, pkgs, upkgs, systemConfiguration, homeConfiguration, enabled, ... }: lib.recursiveUpdate
|
||||
|
||||
(systemConfiguration {
|
||||
programs.dconf = enabled {};
|
||||
|
@ -18,9 +18,14 @@
|
|||
};
|
||||
|
||||
theme = {
|
||||
name = "Gruvbox-Dark-BL";
|
||||
package = pkgs.gruvbox-gtk-theme;
|
||||
name = "Adwaita-Dark";
|
||||
package = pkgs.gnome-themes-extra;
|
||||
};
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
"gtk-3.0/gtk.css".text = upkgs.theme.adwaitaGtkCss;
|
||||
"gtk-4.0/gtk.css".text = upkgs.theme.adwaitaGtkCss;
|
||||
};
|
||||
})
|
||||
|
||||
|
|
|
@ -41,20 +41,20 @@
|
|||
+
|
||||
''
|
||||
binde = SUPER, left, movefocus, l
|
||||
binde = SUPER, up, movefocus, u
|
||||
binde = SUPER, down, movefocus, d
|
||||
binde = SUPER, up, movefocus, u
|
||||
binde = SUPER, right, movefocus, r
|
||||
|
||||
binde = SUPER, h, movefocus, l
|
||||
binde = SUPER, k, movefocus, u
|
||||
binde = SUPER, j, movefocus, d
|
||||
binde = SUPER, k, movefocus, u
|
||||
binde = SUPER, l, movefocus, r
|
||||
''
|
||||
+
|
||||
''
|
||||
binde = SUPER+CTRL, left, resizeactive, -10 0
|
||||
binde = SUPER+CTRL, up, resizeactive, 0 -10
|
||||
binde = SUPER+CTRL, down, resizeactive, 0 10
|
||||
binde = SUPER+CTRL, up, resizeactive, 0 -10
|
||||
binde = SUPER+CTRL, right, resizeactive, 10 0
|
||||
|
||||
binde = SUPER+CTRL, h, resizeactive, -10 0
|
||||
|
@ -65,13 +65,13 @@
|
|||
+
|
||||
''
|
||||
bind = SUPER+ALT, left, movewindow, l
|
||||
bind = SUPER+ALT, up, movewindow, u
|
||||
bind = SUPER+ALT, down, movewindow, d
|
||||
bind = SUPER+ALT, up, movewindow, u
|
||||
bind = SUPER+ALT, right, movewindow, r
|
||||
|
||||
bind = SUPER+ALT, h, movewindow, l
|
||||
bind = SUPER+ALT, j, movewindow, u
|
||||
bind = SUPER+ALT, k, movewindow, d
|
||||
bind = SUPER+ALT, j, movewindow, d
|
||||
bind = SUPER+ALT, k, movewindow, u
|
||||
bind = SUPER+ALT, l, movewindow, r
|
||||
''
|
||||
+
|
||||
|
|
|
@ -22,8 +22,8 @@ homeConfiguration "nixos" {
|
|||
scrollback_lines = 100000;
|
||||
scrollback_pager = "bat --chop-long-lines";
|
||||
|
||||
cursor = lightForeground;
|
||||
cursor_theme_color = background;
|
||||
cursor = base05;
|
||||
cursor_theme_color = base00;
|
||||
cursor_shape = "beam";
|
||||
|
||||
url_color = base0D;
|
||||
|
@ -36,20 +36,20 @@ homeConfiguration "nixos" {
|
|||
inactive_border_color = base01;
|
||||
window_border_width = "0pt";
|
||||
|
||||
background = background;
|
||||
foreground = lightForeground;
|
||||
background = base00;
|
||||
foreground = base05;
|
||||
|
||||
selection_background = lightForeground;
|
||||
selection_foreground = background;
|
||||
selection_background = base02;
|
||||
selection_foreground = base00;
|
||||
|
||||
tab_bar_edge = "top";
|
||||
tab_bar_style = "powerline";
|
||||
|
||||
active_tab_background = background;
|
||||
active_tab_foreground = lightForeground;
|
||||
active_tab_background = base00;
|
||||
active_tab_foreground = base05;
|
||||
|
||||
inactive_tab_background = lighterBackground;
|
||||
inactive_tab_foreground = lightForeground;
|
||||
inactive_tab_background = base01;
|
||||
inactive_tab_foreground = base05;
|
||||
|
||||
color0 = base00;
|
||||
color1 = base08;
|
||||
|
|
|
@ -124,8 +124,8 @@ homeConfiguration "nixos" {
|
|||
}
|
||||
|
||||
#waybar {
|
||||
background: ${background};
|
||||
color: ${lightForeground};
|
||||
background: ${base00};
|
||||
color: ${base05};
|
||||
}
|
||||
|
||||
#waybar:hover {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue