From 3c38bb3a72ec86c5a0e27ef388464059b1a9cb2d Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 24 Apr 2025 09:36:58 +0200 Subject: [PATCH] bar: right click right side for next track --- .config/quickshell/modules/bar/Bar.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/quickshell/modules/bar/Bar.qml b/.config/quickshell/modules/bar/Bar.qml index 5ab29e8e..942e2b0b 100644 --- a/.config/quickshell/modules/bar/Bar.qml +++ b/.config/quickshell/modules/bar/Bar.qml @@ -6,6 +6,7 @@ import QtQuick.Controls import QtQuick.Layouts import Quickshell import Quickshell.Io +import Quickshell.Services.Mpris Scope { id: bar @@ -258,6 +259,9 @@ Scope { if (event.button === Qt.LeftButton) { openSidebarRight.running = true } + else if (event.button === Qt.RightButton) { + MprisController.activePlayer.next() + } } // Scroll to change volume WheelHandler {