make fuzzel less bright
This commit is contained in:
parent
06886d02dc
commit
d1e0c69e4c
|
@ -11,7 +11,6 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
xwayland-satellite
|
xwayland-satellite
|
||||||
alacritty
|
alacritty
|
||||||
fuzzel
|
|
||||||
];
|
];
|
||||||
|
|
||||||
qt.style = {
|
qt.style = {
|
||||||
|
@ -29,6 +28,35 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.fuzzel = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
main = {
|
||||||
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
|
icon-theme = "Adwaita";
|
||||||
|
counter = true;
|
||||||
|
font = "sans:size=10";
|
||||||
|
};
|
||||||
|
colors = {
|
||||||
|
border = "0003B3FF";
|
||||||
|
background = "0F0F0FFF";
|
||||||
|
text = "657b83ff";
|
||||||
|
prompt = "586e75ff";
|
||||||
|
placeholder = "93a1a1ff";
|
||||||
|
input = "657b83ff";
|
||||||
|
match = "cb4b16ff";
|
||||||
|
selection = "eee8d5ff";
|
||||||
|
selection-text = "586e75ff";
|
||||||
|
selection-match = "cb4b16ff";
|
||||||
|
counter = "93a1a1ff";
|
||||||
|
};
|
||||||
|
border = {
|
||||||
|
radius = 30;
|
||||||
|
width = 3;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.niri.settings = {
|
programs.niri.settings = {
|
||||||
input.keyboard.xkb.layout = "de";
|
input.keyboard.xkb.layout = "de";
|
||||||
|
|
||||||
|
@ -54,7 +82,7 @@
|
||||||
|
|
||||||
# Mod-Shift-/, which is usually the same as Mod-?,
|
# Mod-Shift-/, which is usually the same as Mod-?,
|
||||||
# shows a list of important hotkeys.
|
# shows a list of important hotkeys.
|
||||||
"Mod+Shift+Slash".action.show-hotkey-overlay = { };
|
"Mod+Shift+Numbersign".action.show-hotkey-overlay = { };
|
||||||
|
|
||||||
# Suggested binds for running programs: terminal, app launcher, screen locker.
|
# Suggested binds for running programs: terminal, app launcher, screen locker.
|
||||||
"Mod+T".action.spawn = "alacritty";
|
"Mod+T".action.spawn = "alacritty";
|
||||||
|
|
Loading…
Reference in a new issue