mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
Compare commits
3 commits
ccc5cbe1d4
...
934230098e
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | 934230098e | ||
ItsDrike | 80c1d84061 | ||
ItsDrike | 067b829d5a |
|
@ -13,7 +13,7 @@ in {
|
||||||
home.packages = with pkgs; [ swappy ];
|
home.packages = with pkgs; [ swappy ];
|
||||||
|
|
||||||
xdg.configFile."swappy/config".text = lib.generators.toINI {} {
|
xdg.configFile."swappy/config".text = lib.generators.toINI {} {
|
||||||
General = {
|
Default = {
|
||||||
save_dir = "${config.xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR}";
|
save_dir = "${config.xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR}";
|
||||||
save_filename_format = "Screenshot_%Y-%M-%d_%H-%M-%S.png";
|
save_filename_format = "Screenshot_%Y-%M-%d_%H-%M-%S.png";
|
||||||
show_panel = false;
|
show_panel = false;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
(eventbox
|
(eventbox
|
||||||
:tooltip {time.day}
|
:tooltip {time.day}
|
||||||
:class "module clock"
|
:class "module clock"
|
||||||
;; :onclick "${EWW_CMD} open --toggle calendar"
|
:onclick "${EWW_CMD} open --toggle calendar"
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
|
|
@ -10,19 +10,14 @@ in
|
||||||
theme = {
|
theme = {
|
||||||
name = mkOption {
|
name = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "Catppuccin-Mocha-Standard-Blue-dark";
|
default = "Tokyonight-Dark-BL";
|
||||||
description = "The name for the GTK theme package";
|
description = "The name for the GTK theme package";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
description = "The theme package to be used for GTK programs";
|
description = "The theme package to be used for GTK programs";
|
||||||
default = pkgs.catppuccin-gtk.override {
|
default = pkgs.tokyo-night-gtk;
|
||||||
size = "standard";
|
|
||||||
accents = ["blue"];
|
|
||||||
variant = "mocha";
|
|
||||||
tweaks = ["normal"];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue