commit cb246cb9c2c1440e05998d82eada21eaba107d59
parent a25645a5a6e205fccee1ca5abc00f8ee31b3bf44
Author: Furkan Sahin <furkan-dev@proton.me>
Date: Tue, 8 Apr 2025 17:13:03 -0400
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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" },