Compare commits

...

3 commits

3 changed files with 4 additions and 9 deletions

View file

@ -13,7 +13,7 @@ in {
home.packages = with pkgs; [ swappy ];
xdg.configFile."swappy/config".text = lib.generators.toINI {} {
General = {
Default = {
save_dir = "${config.xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR}";
save_filename_format = "Screenshot_%Y-%M-%d_%H-%M-%S.png";
show_panel = false;

View file

@ -3,7 +3,7 @@
(eventbox
:tooltip {time.day}
:class "module clock"
;; :onclick "${EWW_CMD} open --toggle calendar"
:onclick "${EWW_CMD} open --toggle calendar"
(box
:space-evenly false

View file

@ -10,19 +10,14 @@ in
theme = {
name = mkOption {
type = types.str;
default = "Catppuccin-Mocha-Standard-Blue-dark";
default = "Tokyonight-Dark-BL";
description = "The name for the GTK theme package";
};
package = mkOption {
type = types.package;
description = "The theme package to be used for GTK programs";
default = pkgs.catppuccin-gtk.override {
size = "standard";
accents = ["blue"];
variant = "mocha";
tweaks = ["normal"];
};
default = pkgs.tokyo-night-gtk;
};
};