This commit is contained in:
2025-02-04 14:27:15 -05:00
parent 6815ec12ce
commit 42cd641f30
20 changed files with 362 additions and 488 deletions

View File

@@ -1,7 +1,6 @@
{
config,
pkgs,
homeDirectory,
...
}:
{
@@ -34,14 +33,23 @@
focus-ring = {
enable = true;
active = {
color = "pink";
color = "#bf7778";
};
};
};
spawn-at-startup = [
# waybar (status bar)
{ command = [ "${pkgs.waybar}/bin/waybar" ]; }
# { command = [ "${pkgs.waybar}/bin/waybar" ]; }
{
command = [
"${config.programs.eww.package}/bin/eww"
"-c"
"${config.programs.eww.configDir}"
"open"
"statusbar"
];
}
# swaybg works on more than just sway (sets a wallpaper)
{
@@ -52,10 +60,11 @@
];
}
# Xwayland on niri via xwayland-satellite
{
command = [
"${pkgs.xwayland-satellite-unstable}/bin/xwayland-satellite"
(builtins.toString config.programs.niri.settings.environment.DISPLAY)
"${pkgs.xwayland-satellite}/bin/xwayland-satellite"
config.programs.niri.settings.environment.DISPLAY
];
}
];