aboutsummaryrefslogtreecommitdiff
path: root/swaymsg
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2025-04-08 17:13:03 -0400
committerSimon Ser <contact@emersion.fr>2025-04-09 01:10:03 +0200
commitcb246cb9c2c1440e05998d82eada21eaba107d59 (patch)
treeba8337202ead8f988aa5568359b6abe8c64d9b21 /swaymsg
parenta25645a5a6e205fccee1ca5abc00f8ee31b3bf44 (diff)
ipc: standardize pretty print with raw print
`swaymsg -t get_inputs --raw` calls it a pointer but `--pretty` calls it a Mouse. Previous commit 6737b90cb that set this to pointer probably forgo to update the pretty one. closes #8584
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index 7534ea6d..dc1c7407 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -99,7 +99,7 @@ static const char *pretty_type_name(const char *name) {
const char *b;
} type_names[] = {
{ "keyboard", "Keyboard" },
- { "pointer", "Mouse" },
+ { "pointer", "Pointer" },
{ "touchpad", "Touchpad" },
{ "tablet_pad", "Tablet pad" },
{ "tablet_tool", "Tablet tool" },