mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
hpyrland: switched app launcher to fuzzel
This commit is contained in:
parent
1a2c92adb1
commit
87e0c0cbd2
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ ./common.nix ./common-gui.nix ./hypr ./waybar ./mako ./bemenu ./fuzzel ];
|
[ ./common.nix ./common-gui.nix ./hypr ./waybar ./mako ./fuzzel ];
|
||||||
}
|
}
|
||||||
|
|
20
home/fuzzel/default.nix
Normal file
20
home/fuzzel/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.fuzzel = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
main = {
|
||||||
|
font = "Noto Nerd Font Sans Mono";
|
||||||
|
icon-theme = "breeze";
|
||||||
|
layer = "overlay";
|
||||||
|
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
||||||
|
};
|
||||||
|
colors.background = "#00000099";
|
||||||
|
colors.selection = "#000000FF";
|
||||||
|
colors.selection-match = "#FF0000FF";
|
||||||
|
colors.selection-text = "#008000FF";
|
||||||
|
colors.text = "#FFFFFFFF";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -21,7 +21,7 @@ exec-once = waybar & mako & hypridle
|
||||||
# Set programs that you use
|
# Set programs that you use
|
||||||
$terminal = alacritty
|
$terminal = alacritty
|
||||||
$fileManager = thunar
|
$fileManager = thunar
|
||||||
$menu = bemenu-run
|
$menu = fuzzel
|
||||||
|
|
||||||
# Some default env vars.
|
# Some default env vars.
|
||||||
env = XCURSOR_SIZE,24
|
env = XCURSOR_SIZE,24
|
||||||
|
|
Loading…
Reference in a new issue