diff --git a/README.md b/README.md index 13b5ec8a2..0a69f8e1f 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ For example, to disable the bar on DP-1: }, { "timeout": 600, - "idleAction": ["systemctl", "suspend-then-hibernate"] + "idleAction": ["systemctl", "suspend"] } ] } @@ -600,8 +600,8 @@ For example, to disable the bar on DP-1: { "name": "Sleep", "icon": "bedtime", - "description": "Suspend then hibernate", - "command": ["systemctl", "suspend-then-hibernate"], + "description": "Suspend to RAM", + "command": ["systemctl", "suspend"], "enabled": true, "dangerous": false }, diff --git a/plugin/src/Caelestia/Config/generalconfig.hpp b/plugin/src/Caelestia/Config/generalconfig.hpp index 859302fef..075783b09 100644 --- a/plugin/src/Caelestia/Config/generalconfig.hpp +++ b/plugin/src/Caelestia/Config/generalconfig.hpp @@ -43,7 +43,7 @@ class GeneralIdle : public ConfigObject { }), vmap({ { u"timeout"_s, 600 }, - { u"idleAction"_s, QStringList{ u"systemctl"_s, u"suspend-then-hibernate"_s } }, + { u"idleAction"_s, QStringList{ u"systemctl"_s, u"suspend"_s } }, }), }) diff --git a/plugin/src/Caelestia/Config/launcherconfig.hpp b/plugin/src/Caelestia/Config/launcherconfig.hpp index 049e213ae..a709ef684 100644 --- a/plugin/src/Caelestia/Config/launcherconfig.hpp +++ b/plugin/src/Caelestia/Config/launcherconfig.hpp @@ -115,8 +115,8 @@ class LauncherConfig : public ConfigObject { vmap({ { u"name"_s, u"Sleep"_s }, { u"icon"_s, u"bedtime"_s }, - { u"description"_s, u"Suspend then hibernate"_s }, - { u"command"_s, QStringList{ u"systemctl"_s, u"suspend-then-hibernate"_s } }, + { u"description"_s, u"Suspend to RAM"_s }, + { u"command"_s, QStringList{ u"systemctl"_s, u"suspend"_s } }, }), vmap({ { u"name"_s, u"Settings"_s },