merge
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
schemaDir = "${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/gsettings-desktop-schemas-${pkgs.gsettings-desktop-schemas.version}/glib-2.0/schemas";
|
||||
|
||||
hyprctl = "${pkgs.hyprland}/bin/hyprctl";
|
||||
ensureHis = ''
|
||||
if [ -z "$HYPRLAND_INSTANCE_SIGNATURE" ]; then
|
||||
export HYPRLAND_INSTANCE_SIGNATURE="$(${pkgs.coreutils}/bin/ls -t "$XDG_RUNTIME_DIR/hypr" | ${pkgs.coreutils}/bin/head -n1)"
|
||||
fi
|
||||
'';
|
||||
|
||||
hyprsunsetEnabled = config.custom.hyprsunset.enable or false;
|
||||
in
|
||||
{
|
||||
|
||||
options.custom = {
|
||||
darkman.enable = lib.mkEnableOption "enable darkman - auto dark/light switch";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.custom.darkman.enable {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
glib
|
||||
gsettings-desktop-schemas
|
||||
];
|
||||
|
||||
services.darkman = {
|
||||
enable = true;
|
||||
settings = {
|
||||
lat = -22.48;
|
||||
lng = -47.08;
|
||||
usegeoclue = false;
|
||||
};
|
||||
darkModeScripts = {
|
||||
gtk-theme = ''
|
||||
export GSETTINGS_SCHEMA_DIR=${schemaDir}
|
||||
${pkgs.glib}/bin/gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
||||
${pkgs.glib}/bin/gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita-dark'
|
||||
'';
|
||||
}
|
||||
// lib.optionalAttrs hyprsunsetEnabled {
|
||||
hyprsunset = ''
|
||||
${ensureHis}
|
||||
${hyprctl} hyprsunset temperature 4000
|
||||
${hyprctl} hyprsunset gamma 85
|
||||
'';
|
||||
};
|
||||
lightModeScripts = {
|
||||
gtk-theme = ''
|
||||
export GSETTINGS_SCHEMA_DIR=${schemaDir}
|
||||
${pkgs.glib}/bin/gsettings set org.gnome.desktop.interface color-scheme 'prefer-light'
|
||||
${pkgs.glib}/bin/gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita'
|
||||
'';
|
||||
}
|
||||
// lib.optionalAttrs hyprsunsetEnabled {
|
||||
hyprsunset = ''
|
||||
${ensureHis}
|
||||
${hyprctl} hyprsunset identity
|
||||
${hyprctl} hyprsunset gamma 100
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user