mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-05 13:57:36 +00:00
16 lines
415 B
QML
16 lines
415 B
QML
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
NIconButtonHot {
|
|
property ShellScreen screen
|
|
|
|
enabled: Settings.data.wallpaper.enabled
|
|
icon: "wallpaper-selector"
|
|
tooltipText: I18n.tr("quickSettings.wallpaperSelector.tooltip.action")
|
|
onClicked: PanelService.getPanel("wallpaperPanel")?.toggle(this)
|
|
onRightClicked: WallpaperService.setRandomWallpaper()
|
|
}
|