1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Fix Fuzzel config

This commit is contained in:
RGBCube 2023-11-08 12:43:20 +03:00
parent c030a0385a
commit 4ecfe885b0
No known key found for this signature in database
5 changed files with 33 additions and 12 deletions

1
.gitignore vendored
View file

@ -12,6 +12,7 @@
!machines/enka/gtk/ !machines/enka/gtk/
!machines/enka/helix/ !machines/enka/helix/
!machines/enka/hyprland/ !machines/enka/hyprland/
!machines/enka/kitty/
!machines/enka/networkmanager/ !machines/enka/networkmanager/
!machines/enka/nushell/ !machines/enka/nushell/
!machines/enka/openttd/ !machines/enka/openttd/

View file

@ -19,6 +19,7 @@
./gtk ./gtk
./helix ./helix
./hyprland ./hyprland
./kitty
./networkmanager ./networkmanager
./nushell ./nushell
./openttd ./openttd

View file

@ -4,7 +4,7 @@ homeConfiguration "nixos" {
programs.fuzzel = enabled { programs.fuzzel = enabled {
settings.main = { settings.main = {
font = "JetBrainsMono:size=12"; font = "JetBrainsMono:size=12";
prompt = " "; prompt = ''" "'';
terminal = "kitty"; terminal = "kitty";
@ -12,16 +12,21 @@ homeConfiguration "nixos" {
horizontal-pad = 10; horizontal-pad = 10;
vertical-pad = 10; vertical-pad = 10;
inner-pad = 5; inner-pad = 10;
background-color = "1D2021";
text = "DDC7A1";
match = "D79921";
selection = "DDC7A1";
selection-text = "1D2021";
border = "D79921";
}; };
settings.border.radius = 0; settings.colors = {
background = "1D2021FF";
text = "DDC7A1FF";
match = "D79921FF";
selection = "DDC7A1FF";
selection-text = "1D2021FF";
border = "D79921FF";
};
settings.border = {
radius = 0;
width = 3;
};
}; };
} }

View file

@ -64,7 +64,7 @@
bind = SUPER, W, exec, firefox bind = SUPER, W, exec, firefox
bind = SUPER, D, exec, discord bind = SUPER, D, exec, discord
bind = , Print, exec, grim -g "$(slurp)" - | wl-copy bind = , Print, exec, sh -c 'grim -g "$(slurp)" - | wl-copy'
bind = SHIFT, Print, exec, kazam bind = SHIFT, Print, exec, kazam
$active_color = 0xD79921 $active_color = 0xD79921
@ -72,7 +72,7 @@
general { general {
gaps_in = 5 gaps_in = 5
gaps_out = 5 gaps_out = 10
col.active_border = $active_color col.active_border = $active_color
col.nogroup_border_active = $active_color col.nogroup_border_active = $active_color

View file

@ -0,0 +1,14 @@
{ pkgs, homeConfiguration, enabled, ... }:
homeConfiguration "nixos" {
programs.kitty = enabled {
font.name = "JetBrainsMono Nerd Font";
font.size = 16;
theme = "Gruvbox Dark";
settings = {
scrollback_lines = 100000;
mouse_hide_wait = 0;
}
};
}