1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +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/helix/
!machines/enka/hyprland/
!machines/enka/kitty/
!machines/enka/networkmanager/
!machines/enka/nushell/
!machines/enka/openttd/

View file

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

View file

@ -4,7 +4,7 @@ homeConfiguration "nixos" {
programs.fuzzel = enabled {
settings.main = {
font = "JetBrainsMono:size=12";
prompt = " ";
prompt = ''" "'';
terminal = "kitty";
@ -12,16 +12,21 @@ homeConfiguration "nixos" {
horizontal-pad = 10;
vertical-pad = 10;
inner-pad = 5;
background-color = "1D2021";
text = "DDC7A1";
match = "D79921";
selection = "DDC7A1";
selection-text = "1D2021";
border = "D79921";
inner-pad = 10;
};
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, 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
$active_color = 0xD79921
@ -72,7 +72,7 @@
general {
gaps_in = 5
gaps_out = 5
gaps_out = 10
col.active_border = $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;
}
};
}