mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-07 14:57:15 +00:00
96 lines
2.5 KiB
QML
96 lines
2.5 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
ColumnLayout {
|
|
id: contentColumn
|
|
spacing: Style.marginL
|
|
width: root.width
|
|
|
|
NHeader {
|
|
label: I18n.tr("settings.hooks.system-hooks.section.label")
|
|
description: I18n.tr("settings.hooks.system-hooks.section.description")
|
|
}
|
|
|
|
// Enable/Disable Toggle
|
|
NToggle {
|
|
label: I18n.tr("settings.hooks.system-hooks.enable.label")
|
|
description: I18n.tr("settings.hooks.system-hooks.enable.description")
|
|
checked: Settings.data.hooks.enabled
|
|
onToggled: checked => Settings.data.hooks.enabled = checked
|
|
}
|
|
|
|
ColumnLayout {
|
|
visible: Settings.data.hooks.enabled
|
|
spacing: Style.marginL
|
|
Layout.fillWidth: true
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
// Wallpaper Hook Section
|
|
NInputAction {
|
|
id: wallpaperHookInput
|
|
label: I18n.tr("settings.hooks.wallpaper-changed.label")
|
|
description: I18n.tr("settings.hooks.wallpaper-changed.description")
|
|
placeholderText: I18n.tr("settings.hooks.wallpaper-changed.placeholder")
|
|
text: Settings.data.hooks.wallpaperChange
|
|
onEditingFinished: {
|
|
Settings.data.hooks.wallpaperChange = wallpaperHookInput.text
|
|
}
|
|
onActionClicked: {
|
|
if (wallpaperHookInput.text) {
|
|
HooksService.executeWallpaperHook("test", "test-screen")
|
|
}
|
|
}
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
// Dark Mode Hook Section
|
|
NInputAction {
|
|
id: darkModeHookInput
|
|
label: I18n.tr("settings.hooks.theme-changed.label")
|
|
description: I18n.tr("settings.hooks.theme-changed.description")
|
|
placeholderText: I18n.tr("settings.hooks.theme-changed.placeholder")
|
|
text: Settings.data.hooks.darkModeChange
|
|
onEditingFinished: {
|
|
Settings.data.hooks.darkModeChange = darkModeHookInput.text
|
|
}
|
|
onActionClicked: {
|
|
if (darkModeHookInput.text) {
|
|
HooksService.executeDarkModeHook(Settings.data.colorSchemes.darkMode)
|
|
}
|
|
}
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
// Info section
|
|
ColumnLayout {
|
|
spacing: Style.marginM
|
|
Layout.fillWidth: true
|
|
|
|
NLabel {
|
|
label: I18n.tr("settings.hooks.info.command-info.label")
|
|
description: I18n.tr("settings.hooks.info.command-info.description")
|
|
}
|
|
|
|
NLabel {
|
|
label: I18n.tr("settings.hooks.info.parameters.label")
|
|
description: I18n.tr("settings.hooks.info.parameters.description")
|
|
}
|
|
}
|
|
}
|
|
}
|