]> Freerunner's - dotfiles.git/commitdiff
scripts: rename wlprop to kprop
authorAndre Ramnitz <andre.ramnitz@mail.de>
Thu, 30 Jul 2026 05:16:33 +0000 (07:16 +0200)
committerAndre Ramnitz <andre.ramnitz@mail.de>
Thu, 30 Jul 2026 05:16:33 +0000 (07:16 +0200)
dot-local/bin/kprop [new file with mode: 0755]
dot-local/bin/wlprop [deleted file]

diff --git a/dot-local/bin/kprop b/dot-local/bin/kprop
new file mode 100755 (executable)
index 0000000..da92908
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+# echo "$1"
+
+case "$1" in
+  "-c")
+    qdbus6 org.kde.KWin /KWin queryWindowInfo | grep -i class
+    ;;
+  *)
+    qdbus6 org.kde.KWin /KWin queryWindowInfo
+    ;;
+esac
diff --git a/dot-local/bin/wlprop b/dot-local/bin/wlprop
deleted file mode 100755 (executable)
index da92908..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-# echo "$1"
-
-case "$1" in
-  "-c")
-    qdbus6 org.kde.KWin /KWin queryWindowInfo | grep -i class
-    ;;
-  *)
-    qdbus6 org.kde.KWin /KWin queryWindowInfo
-    ;;
-esac