Reworked KDE Theme reminder to be a popup. Fixed Trayscale not working by default.

This commit is contained in:
2025-09-03 14:27:29 +02:00
parent f4e77e64c9
commit 22b55e455c
24 changed files with 62 additions and 38 deletions

47
plasma/autostart.nix Normal file → Executable file
View File

@ -1,12 +1,16 @@
{ config, pkgs, ... }:
{
#To show logs of services run: journalctl --user-unit={service-name} --user
systemd.user.services.set-wallpaper = {
enable = true;
description = "Set KDE Plasma wallpaper";
#after = [ "plasma-desktop.service" ];
serviceConfig.ExecStart = [ "/run/current-system/sw/bin/plasma-apply-wallpaperimage /etc/nixos/other/wallpaper.png" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = [ "/run/current-system/sw/bin/plasma-apply-wallpaperimage /etc/nixos/other/wallpaper.png" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
@ -17,9 +21,10 @@
enable = true;
description = "Automatically start Yakuake";
after = [ "graphical-session.target" ];
serviceConfig.ExecStart = [ "${pkgs.kdePackages.yakuake}/bin/yakuake" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = [ "${pkgs.kdePackages.yakuake}/bin/yakuake" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
@ -27,16 +32,34 @@
};
};
systemd.user.services.theme-set-reminder = {
enable = true;
description = "Remind the user to apply the custom Plasma Theme shipped with this NixOS";
after = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
# ExecStart = [ "${pkgs.kdePackages.kdialog}/bin/kdialog --passivepopup \"Dont forget to apply custom system theme! (run kde-theme-apply in terminal)\"" ];
ExecStart = [ "/etc/nixos/plasma/theme-popup.sh" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
# Environment = "PATH=/run/current-system/sw/bin:/etc/profiles/per-user/$USER/bin";
# Environment = "DISPLAY=:0";
};
};
systemd.user.services.autostart-trayscale = {
enable = true;
description = "Automatically start Trayscale";
#after = [ "plasma-desktop.service" ];
serviceConfig.ExecStart = [ "${pkgs.trayscale}/bin/trayscale --hide-window" ];
wantedBy = [ "default.target" ];
serviceConfig = {
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
};
enable = true;
description = "Automatically start Trayscale";
#after = [ "plasma-desktop.service" ];
wantedBy = [ "default.target" ];
serviceConfig = {
ExecStart = [ "${pkgs.trayscale}/bin/trayscale --hide-window" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
};
};
}