mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 06:11:55 -05:00
sway: override stylix indicator colors
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
This commit is contained in:
parent
429779ad45
commit
900e491c05
|
@ -5,9 +5,12 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
cfg = config.ar.home;
|
cfg = config.ar.home;
|
||||||
|
focused = config.lib.stylix.colors.withHashtag.base0D;
|
||||||
helpers = import ../wayland/helpers.nix {inherit config lib pkgs;};
|
helpers = import ../wayland/helpers.nix {inherit config lib pkgs;};
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
scripts = import ./scripts.nix {inherit config lib pkgs;};
|
scripts = import ./scripts.nix {inherit config lib pkgs;};
|
||||||
|
unfocused = config.lib.stylix.colors.withHashtag.base03;
|
||||||
|
urgent = config.lib.stylix.colors.withHashtag.base08;
|
||||||
in {
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
checkConfig = false;
|
checkConfig = false;
|
||||||
|
@ -29,6 +32,14 @@ in {
|
||||||
bars = [];
|
bars = [];
|
||||||
modifier = modifier;
|
modifier = modifier;
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
focused.indicator = lib.mkForce focused;
|
||||||
|
focusedInactive.indicator = lib.mkForce unfocused;
|
||||||
|
placeholder.indicator = lib.mkForce unfocused;
|
||||||
|
unfocused.indicator = lib.mkForce unfocused;
|
||||||
|
urgent.indicator = lib.mkForce urgent;
|
||||||
|
};
|
||||||
|
|
||||||
defaultWorkspace = "workspace number 1";
|
defaultWorkspace = "workspace number 1";
|
||||||
|
|
||||||
floating.criteria = [
|
floating.criteria = [
|
||||||
|
|
Loading…
Reference in a new issue