diff options
author | Simon Ser <contact@emersion.fr> | 2023-02-02 09:35:42 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2023-02-02 12:00:06 -0500 |
commit | 0695f3fa2ae0df139793f7d251ca7357af246642 (patch) | |
tree | 0a823596ab4890d81491b4ba8a0247fe4cb0b56c /swaymsg | |
parent | f22d4dbab721f36ba991055d87ab015d564604bb (diff) |
swaymsg: s/inactive/disabled/
The JSON field is named "active", but that's confusing for users:
`output disable` is the command which results in `active = false`
outputs. Use the same terminology in end-user messages.
Diffstat (limited to 'swaymsg')
-rw-r--r-- | swaymsg/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index 4f6fa7b1..4d3fa68c 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -259,7 +259,7 @@ static void pretty_print_output(json_object *o) { json_object_get_string(adaptive_sync_status)); } else { printf( - "Output %s '%s %s %s' (inactive)\n", + "Output %s '%s %s %s' (disabled)\n", json_object_get_string(name), json_object_get_string(make), json_object_get_string(model), |