Skip to content

Commit

Permalink
qdbus-qt6 has been changed to qdbus6 (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodevasia authored Feb 13, 2025
1 parent f450c5a commit 558f5eb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tools/load.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,13 @@ dbus-send --dest=org.kde.KWin --print-reply /Effects \
org.kde.kwin.Effects.loadEffect string:kwin4_effect_shapecorners | awk 'NR==2 {print $2}'

kwriteconfig6 --file breezerc --group Common --key OutlineIntensity "OutlineOff"
qdbus-qt6 org.kde.KWin /KWin reconfigure

# Find available qdbus binary
QDBUS_BIN=$(which qdbus6 qdbus-qt6 qdbus 2>/dev/null | head -n 1)

if [ -z "$QDBUS_BIN" ]; then
echo "qdbus not found. Exiting."
exit 1
fi

$QDBUS_BIN org.kde.KWin /KWin reconfigure

0 comments on commit 558f5eb

Please sign in to comment.