1

Ags: Switch back to waybar for now

Until I figure out how to theme this thing
This commit is contained in:
2024-10-13 19:40:41 +02:00
parent da87d0c653
commit fdf5278f2c
4 changed files with 6 additions and 5 deletions

View File

@ -33,7 +33,7 @@ rec {
# Enable and configure my custom HM modules.
modules = {
ags.enable = true;
ags.enable = false; # TODO: Configure
chromium = {
enable = true;
@ -172,7 +172,7 @@ rec {
theme = "Foggy-Lake";
};
waybar.enable = false;
waybar.enable = true;
zathura.enable = true;
};

View File

@ -197,6 +197,8 @@ function Bar(monitor = 0) {
}
App.config({
style: "./style.css",
style: "/home/christoph/.config/ags/style.css",
windows: [Bar(0)],
});
export {};

View File

@ -23,7 +23,7 @@ in {
# NOTE: Keep this symlinked as long as I'm configuring
".config/ags".source = config.lib.file.mkOutOfStoreSymlink "/home/christoph/NixFlake/home/modules/ags/config";
# LSP typechecking support
# LSP typechecking support (use ags --init)
# ".config/ags/types".source = config.lib.file.mkOutOfStoreSymlink "${pkgs.ags}/share/com.github.Aylur.ags/types";
};
};

View File

@ -9,7 +9,6 @@ with lib;
with mylib.modules; let
cfg = config.modules.waybar;
color = config.modules.color;
hyprcfg = config.modules.hyprland;
in {
options.modules.waybar = import ./options.nix {inherit lib mylib;};