gnome control center -> plasma systemsettings

This commit is contained in:
end-4 2025-06-08 17:05:20 +02:00
parent f840af4652
commit cfb4f1a5e1
4 changed files with 6 additions and 6 deletions

View file

@ -208,7 +208,7 @@ bind = Super, W, exec, zen-browser # [hidden]
bind = Super+Shift, W, exec, wps # WPS Office
bind = Super, X, exec, kate # Kate (text editor)
bind = Ctrl+Super, V, exec, pavucontrol-qt # Pavucontrol Qt (volume mixer)
bind = Super, I, exec, XDG_CURRENT_DESKTOP=gnome gnome-control-center # GNOME Control center (settings app)
bind = Super, I, exec, systemsettings # Plasma system settings
bind = Ctrl+Shift, Escape, exec, plasma-systemmonitor --page-name Processes # Plasma system monitor
# Cursed stuff

View file

@ -21,10 +21,11 @@ Singleton {
}
property QtObject apps: QtObject {
property string bluetooth: "better-control --bluetooth"
property string bluetooth: "systemsettings kcm_bluetooth"
property string imageViewer: "loupe"
property string network: "XDG_CURRENT_DESKTOP=\"gnome\" gnome-control-center wifi"
property string settings: "XDG_CURRENT_DESKTOP=\"gnome\" gnome-control-center"
property string network: "better-control --wifi"
property string networkEthernet: "systemsettings kcm_networkmanagement"
property string settings: "systemsettings kcm_bluetooth"
property string taskManager: "plasma-systemmonitor --page-name Processes"
property string terminal: "kitty -1" // This is only for shell actions
}

View file

@ -15,7 +15,7 @@ QuickToggleButton {
toggleNetwork.running = true
}
altAction: () => {
Hyprland.dispatch(`exec ${ConfigOptions.apps.network}`)
Hyprland.dispatch(`exec ${Network.ethernet ? ConfigOptions.apps.networkEthernet : ConfigOptions.apps.network}`)
Hyprland.dispatch("global quickshell:sidebarRightClose")
}
Process {

View file

@ -7,6 +7,5 @@ license=(None)
depends=(
polkit-kde-agent
gnome-keyring
gnome-control-center
networkmanager better-control-git
)