mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
83 lines
2.2 KiB
Nix
83 lines
2.2 KiB
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: let
|
||
|
|
switch-theme = pkgs.writers.writeDashBin "switch-theme" ''
|
||
|
|
set -efux
|
||
|
|
if [ "$1" = toggle ]; then
|
||
|
|
if [ "$(${pkgs.coreutils}/bin/cat /var/theme/current_theme)" = dark ]; then
|
||
|
|
${placeholder "out"}/bin/switch-theme light
|
||
|
|
else
|
||
|
|
${placeholder "out"}/bin/switch-theme dark
|
||
|
|
fi
|
||
|
|
elif test -e "/etc/themes/$1"; then
|
||
|
|
mkdir -p /var/theme/config
|
||
|
|
${pkgs.rsync}/bin/rsync --chown=${config.users.users.me.name}:users -a --delete "/etc/themes/$1/" /var/theme/config/
|
||
|
|
echo "$1" > /var/theme/current_theme
|
||
|
|
${pkgs.coreutils}/bin/chown ${config.users.users.me.name}:users /var/theme/current_theme
|
||
|
|
${pkgs.xorg.xrdb}/bin/xrdb -merge /var/theme/config/xresources
|
||
|
|
${pkgs.procps}/bin/pkill -HUP xsettingsd
|
||
|
|
else
|
||
|
|
echo "theme $1 not found"
|
||
|
|
fi
|
||
|
|
'';
|
||
|
|
in {
|
||
|
|
systemd.services.xsettingsd = {
|
||
|
|
wantedBy = ["multi-user.target"];
|
||
|
|
after = ["display-manager.service"];
|
||
|
|
environment.DISPLAY = ":0";
|
||
|
|
serviceConfig = {
|
||
|
|
ExecStart = "${pkgs.xsettingsd}/bin/xsettingsd -c /var/theme/config/xsettings.conf";
|
||
|
|
User = config.users.users.me.name;
|
||
|
|
Restart = "always";
|
||
|
|
RestartSec = "15s";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
systemd.tmpfiles.rules = [
|
||
|
|
"d /var/theme/ 755 ${config.users.users.me.name} users"
|
||
|
|
];
|
||
|
|
|
||
|
|
environment.systemPackages = [
|
||
|
|
switch-theme
|
||
|
|
pkgs.capitaine-cursors
|
||
|
|
];
|
||
|
|
|
||
|
|
home-manager.users.me = {
|
||
|
|
home.pointerCursor = {
|
||
|
|
name = "capitaine-cursors-white";
|
||
|
|
package = pkgs.capitaine-cursors;
|
||
|
|
size = 16;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
environment.etc = {
|
||
|
|
"themes/light/xsettings.conf".text = ''
|
||
|
|
Net/ThemeName "Adwaita"
|
||
|
|
'';
|
||
|
|
"themes/light/xresources".text = ''
|
||
|
|
*background: #ffffff
|
||
|
|
*foreground: #000000
|
||
|
|
'';
|
||
|
|
"themes/dark/xsettings.conf".text = ''
|
||
|
|
Net/ThemeName "Adwaita-dark"
|
||
|
|
'';
|
||
|
|
"themes/dark/xresources".text = ''
|
||
|
|
*background: #000000
|
||
|
|
*foreground: #ffffff
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
|
||
|
|
system.activationScripts.theme.text = ''
|
||
|
|
export DISPLAY=:0
|
||
|
|
if test -e /var/theme/current_theme; then
|
||
|
|
${switch-theme}/bin/switch-theme "$(cat /var/theme/current_theme)" ||
|
||
|
|
${switch-theme}/bin/switch-theme dark
|
||
|
|
else
|
||
|
|
${switch-theme}/bin/switch-theme dark
|
||
|
|
fi
|
||
|
|
'';
|
||
|
|
}
|