2023-11-04 10:14:42 +00:00
|
|
|
|
{pkgs, ...}: {
|
2023-10-16 08:26:06 +00:00
|
|
|
|
programs.gamemode = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings.custom = {
|
|
|
|
|
start = "${pkgs.libnotify}/bin/notify-send 'GameMode Activated' 'GameMode Activated! Enjoy enhanced performance. 🚀'";
|
|
|
|
|
end = "${pkgs.libnotify}/bin/notify-send 'GameMode Deactivated' 'GameMode Deactivated. Back to normal mode. ⏹️'";
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-11-04 10:14:42 +00:00
|
|
|
|
}
|