Skip to content

Instantly share code, notes, and snippets.

@AJRepo
AJRepo / kde-qdbus.md
Created November 20, 2023 14:23
List of all the KDE-related DBus commands on a Kubuntu 23.10 Linux machine

The .md document was generated by running the following script

#!/bin/bash

for service in $(qdbus "org.kde.*"); do
  echo "# $service"

  for path in $(qdbus "$service"); do
 echo "* $path"