mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-26 21:58:08 +01:00
445bc2a943
The "dpms" command refers to VESA Display Power Management Signaling, a deprecated standard. It's superseded by VESA DPM. Instead of tying out command name to a particular standard, use the neutral term "power".
8 lines
248 B
C
8 lines
248 B
C
#include "log.h"
|
|
#include "sway/commands.h"
|
|
|
|
struct cmd_results *output_cmd_dpms(int argc, char **argv) {
|
|
sway_log(SWAY_INFO, "The \"output dpms\" command is deprecated, "
|
|
"use \"output power\" instead");
|
|
return output_cmd_power(argc, argv);
|
|
}
|