mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
general little UX consistencies and improvements
This commit is contained in:
@@ -419,8 +419,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/myLock.sh"
|
placeholderText: "/usr/bin/myLock.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -451,8 +451,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/myLogout.sh"
|
placeholderText: "/usr/bin/myLogout.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -483,8 +483,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/mySuspend.sh"
|
placeholderText: "/usr/bin/mySuspend.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -515,8 +515,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/myHibernate.sh"
|
placeholderText: "/usr/bin/myHibernate.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -547,8 +547,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/myReboot.sh"
|
placeholderText: "/usr/bin/myReboot.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -579,8 +579,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "/usr/bin/myPowerOff.sh"
|
placeholderText: "/usr/bin/myPowerOff.sh"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
|
|||||||
@@ -210,8 +210,8 @@ DankPopout {
|
|||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
height: 52
|
height: 52
|
||||||
cornerRadius: Theme.cornerRadius
|
cornerRadius: Theme.cornerRadius
|
||||||
backgroundColor: Theme.withAlpha(Theme.surfaceVariant, Theme.popupTransparency)
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
||||||
normalBorderColor: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.3)
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
leftIconName: "search"
|
leftIconName: "search"
|
||||||
leftIconSize: Theme.iconSize
|
leftIconSize: Theme.iconSize
|
||||||
|
|||||||
@@ -123,9 +123,11 @@ Rectangle {
|
|||||||
spacing: Theme.spacingS
|
spacing: Theme.spacingS
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: Pipewire.nodes.values.filter(node => {
|
model: ScriptModel {
|
||||||
return node.audio && !node.isSink && !node.isStream
|
values: Pipewire.nodes.values.filter(node => {
|
||||||
})
|
return node.audio && !node.isSink && !node.isStream
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
|
|||||||
@@ -128,9 +128,11 @@ Rectangle {
|
|||||||
spacing: Theme.spacingS
|
spacing: Theme.spacingS
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: Pipewire.nodes.values.filter(node => {
|
model: ScriptModel {
|
||||||
return node.audio && node.isSink && !node.isStream
|
values: Pipewire.nodes.values.filter(node => {
|
||||||
})
|
return node.audio && node.isSink && !node.isStream
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
|
|||||||
@@ -210,19 +210,20 @@ Rectangle {
|
|||||||
spacing: Theme.spacingS
|
spacing: Theme.spacingS
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: sortedNetworks
|
model: ScriptModel {
|
||||||
|
values: {
|
||||||
property var sortedNetworks: {
|
const currentUuid = NetworkService.ethernetConnectionUuid
|
||||||
const currentUuid = NetworkService.ethernetConnectionUuid
|
const networks = NetworkService.wiredConnections
|
||||||
const networks = NetworkService.wiredConnections
|
let sorted = [...networks]
|
||||||
let sorted = [...networks]
|
sorted.sort((a, b) => {
|
||||||
sorted.sort((a, b) => {
|
if (a.isActive && !b.isActive) return -1
|
||||||
if (a.isActive && !b.isActive) return -1
|
if (!a.isActive && b.isActive) return 1
|
||||||
if (!a.isActive && b.isActive) return 1
|
return a.id.localeCompare(b.id)
|
||||||
return a.id.localeCompare(b.id)
|
})
|
||||||
})
|
return sorted
|
||||||
return sorted
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
required property int index
|
required property int index
|
||||||
@@ -406,22 +407,23 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: wifiContent.menuOpen ? wifiContent.frozenNetworks : sortedNetworks
|
model: ScriptModel {
|
||||||
|
values: {
|
||||||
property var sortedNetworks: {
|
const ssid = NetworkService.currentWifiSSID
|
||||||
const ssid = NetworkService.currentWifiSSID
|
const networks = NetworkService.wifiNetworks
|
||||||
const networks = NetworkService.wifiNetworks
|
let sorted = [...networks]
|
||||||
let sorted = [...networks]
|
sorted.sort((a, b) => {
|
||||||
sorted.sort((a, b) => {
|
if (a.ssid === ssid) return -1
|
||||||
if (a.ssid === ssid) return -1
|
if (b.ssid === ssid) return 1
|
||||||
if (b.ssid === ssid) return 1
|
return b.signal - a.signal
|
||||||
return b.signal - a.signal
|
})
|
||||||
})
|
if (!wifiContent.menuOpen) {
|
||||||
if (!wifiContent.menuOpen) {
|
wifiContent.frozenNetworks = sorted
|
||||||
wifiContent.frozenNetworks = sorted
|
}
|
||||||
|
return wifiContent.menuOpen ? wifiContent.frozenNetworks : sorted
|
||||||
}
|
}
|
||||||
return sorted
|
|
||||||
}
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
required property int index
|
required property int index
|
||||||
|
|||||||
@@ -381,7 +381,9 @@ DankPopout {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: BatteryService.batteries
|
model: ScriptModel {
|
||||||
|
values: BatteryService.batteries
|
||||||
|
}
|
||||||
|
|
||||||
delegate: StyledRect {
|
delegate: StyledRect {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
|
|||||||
@@ -435,7 +435,9 @@ Item {
|
|||||||
flow: isVertical ? Flow.TopToBottom : Flow.LeftToRight
|
flow: isVertical ? Flow.TopToBottom : Flow.LeftToRight
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: root.workspaceList
|
model: ScriptModel {
|
||||||
|
values: root.workspaceList
|
||||||
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: delegateRoot
|
id: delegateRoot
|
||||||
@@ -658,7 +660,9 @@ Item {
|
|||||||
visible: loadedIcons.length > 0
|
visible: loadedIcons.length > 0
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: loadedIcons.slice(0, SettingsData.maxWorkspaceIcons)
|
model: ScriptModel {
|
||||||
|
values: loadedIcons.slice(0, SettingsData.maxWorkspaceIcons)
|
||||||
|
}
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
width: 18
|
width: 18
|
||||||
height: 18
|
height: 18
|
||||||
@@ -727,7 +731,9 @@ Item {
|
|||||||
visible: loadedIcons.length > 0
|
visible: loadedIcons.length > 0
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: loadedIcons.slice(0, SettingsData.maxWorkspaceIcons)
|
model: ScriptModel {
|
||||||
|
values: loadedIcons.slice(0, SettingsData.maxWorkspaceIcons)
|
||||||
|
}
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
width: 18
|
width: 18
|
||||||
height: 18
|
height: 18
|
||||||
|
|||||||
@@ -321,7 +321,9 @@ Rectangle {
|
|||||||
spacing: 16
|
spacing: 16
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: notificationGroup?.notifications?.slice(0, 10) || []
|
model: ScriptModel {
|
||||||
|
values: notificationGroup?.notifications?.slice(0, 10) || []
|
||||||
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
required property var modelData
|
required property var modelData
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
|
import Quickshell
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Services
|
import qs.Services
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
@@ -248,7 +249,10 @@ Column {
|
|||||||
height: parent.height - columnHeaders.height
|
height: parent.height - columnHeaders.height
|
||||||
clip: true
|
clip: true
|
||||||
spacing: 4
|
spacing: 4
|
||||||
model: DgopService.processes
|
model: ScriptModel {
|
||||||
|
values: DgopService.processes
|
||||||
|
objectProp: "pid"
|
||||||
|
}
|
||||||
|
|
||||||
delegate: ProcessListItem {
|
delegate: ProcessListItem {
|
||||||
process: modelData
|
process: modelData
|
||||||
|
|||||||
@@ -111,6 +111,60 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
spacing: Theme.spacingM
|
spacing: Theme.spacingM
|
||||||
|
|
||||||
|
DankIcon {
|
||||||
|
name: "dock_to_bottom"
|
||||||
|
size: Theme.iconSize
|
||||||
|
color: Theme.primary
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
Column {
|
||||||
|
width: parent.width - Theme.iconSize - Theme.spacingM
|
||||||
|
- enableToggle.width - Theme.spacingM
|
||||||
|
spacing: Theme.spacingXS
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
text: I18n.tr("Show Dock")
|
||||||
|
font.pixelSize: Theme.fontSizeLarge
|
||||||
|
font.weight: Font.Medium
|
||||||
|
color: Theme.surfaceText
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
text: I18n.tr("Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen")
|
||||||
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
|
color: Theme.surfaceVariantText
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DankToggle {
|
||||||
|
id: enableToggle
|
||||||
|
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
checked: SettingsData.showDock
|
||||||
|
onToggled: checked => {
|
||||||
|
SettingsData.setShowDock(checked)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
width: parent.width
|
||||||
|
height: 1
|
||||||
|
color: Theme.outline
|
||||||
|
opacity: 0.2
|
||||||
|
visible: SettingsData.showDock
|
||||||
|
}
|
||||||
|
|
||||||
|
Row {
|
||||||
|
width: parent.width
|
||||||
|
spacing: Theme.spacingM
|
||||||
|
visible: SettingsData.showDock
|
||||||
|
opacity: visible ? 1 : 0
|
||||||
|
|
||||||
DankIcon {
|
DankIcon {
|
||||||
name: "visibility_off"
|
name: "visibility_off"
|
||||||
size: Theme.iconSize
|
size: Theme.iconSize
|
||||||
@@ -149,56 +203,12 @@ Item {
|
|||||||
SettingsData.set("dockAutoHide", checked)
|
SettingsData.set("dockAutoHide", checked)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
Behavior on opacity {
|
||||||
width: parent.width
|
NumberAnimation {
|
||||||
height: 1
|
duration: Theme.mediumDuration
|
||||||
color: Theme.outline
|
easing.type: Theme.emphasizedEasing
|
||||||
opacity: 0.2
|
|
||||||
}
|
|
||||||
|
|
||||||
Row {
|
|
||||||
width: parent.width
|
|
||||||
spacing: Theme.spacingM
|
|
||||||
|
|
||||||
DankIcon {
|
|
||||||
name: "dock_to_bottom"
|
|
||||||
size: Theme.iconSize
|
|
||||||
color: Theme.primary
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
Column {
|
|
||||||
width: parent.width - Theme.iconSize - Theme.spacingM
|
|
||||||
- enableToggle.width - Theme.spacingM
|
|
||||||
spacing: Theme.spacingXS
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: I18n.tr("Show Dock")
|
|
||||||
font.pixelSize: Theme.fontSizeLarge
|
|
||||||
font.weight: Font.Medium
|
|
||||||
color: Theme.surfaceText
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: I18n.tr("Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen")
|
|
||||||
font.pixelSize: Theme.fontSizeSmall
|
|
||||||
color: Theme.surfaceVariantText
|
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
width: parent.width
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DankToggle {
|
|
||||||
id: enableToggle
|
|
||||||
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
checked: SettingsData.showDock
|
|
||||||
onToggled: checked => {
|
|
||||||
SettingsData.setShowDock(checked)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -266,8 +276,6 @@ Item {
|
|||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
||||||
Theme.outline.b, 0.2)
|
Theme.outline.b, 0.2)
|
||||||
border.width: 0
|
border.width: 0
|
||||||
visible: SettingsData.showDock
|
|
||||||
opacity: visible ? 1 : 0
|
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: groupByAppSection
|
id: groupByAppSection
|
||||||
@@ -320,13 +328,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.type: Theme.emphasizedEasing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Indicator Style Section
|
// Indicator Style Section
|
||||||
@@ -338,8 +339,6 @@ Item {
|
|||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
||||||
Theme.outline.b, 0.2)
|
Theme.outline.b, 0.2)
|
||||||
border.width: 0
|
border.width: 0
|
||||||
visible: SettingsData.showDock
|
|
||||||
opacity: visible ? 1 : 0
|
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: indicatorStyleSection
|
id: indicatorStyleSection
|
||||||
@@ -386,13 +385,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.type: Theme.emphasizedEasing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Icon Size Section
|
// Icon Size Section
|
||||||
@@ -404,8 +396,6 @@ Item {
|
|||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
||||||
Theme.outline.b, 0.2)
|
Theme.outline.b, 0.2)
|
||||||
border.width: 0
|
border.width: 0
|
||||||
visible: SettingsData.showDock
|
|
||||||
opacity: visible ? 1 : 0
|
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: iconSizeSection
|
id: iconSizeSection
|
||||||
@@ -449,13 +439,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.type: Theme.emphasizedEasing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dock Spacing Section
|
// Dock Spacing Section
|
||||||
@@ -467,8 +450,6 @@ Item {
|
|||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
||||||
Theme.outline.b, 0.2)
|
Theme.outline.b, 0.2)
|
||||||
border.width: 0
|
border.width: 0
|
||||||
visible: SettingsData.showDock
|
|
||||||
opacity: visible ? 1 : 0
|
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: dockSpacingSection
|
id: dockSpacingSection
|
||||||
@@ -580,13 +561,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.type: Theme.emphasizedEasing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dock Transparency Section
|
// Dock Transparency Section
|
||||||
@@ -598,8 +572,6 @@ Item {
|
|||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
||||||
Theme.outline.b, 0.2)
|
Theme.outline.b, 0.2)
|
||||||
border.width: 0
|
border.width: 0
|
||||||
visible: SettingsData.showDock
|
|
||||||
opacity: visible ? 1 : 0
|
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: transparencySection
|
id: transparencySection
|
||||||
@@ -644,13 +616,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.type: Theme.emphasizedEasing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Modals.Common
|
import qs.Modals.Common
|
||||||
import qs.Services
|
import qs.Services
|
||||||
@@ -312,7 +313,9 @@ DankModal {
|
|||||||
anchors.topMargin: Theme.spacingS
|
anchors.topMargin: Theme.spacingS
|
||||||
anchors.bottomMargin: Theme.spacingS
|
anchors.bottomMargin: Theme.spacingS
|
||||||
spacing: Theme.spacingS
|
spacing: Theme.spacingS
|
||||||
model: root.filteredPlugins
|
model: ScriptModel {
|
||||||
|
values: root.filteredPlugins
|
||||||
|
}
|
||||||
clip: true
|
clip: true
|
||||||
visible: !root.isLoading
|
visible: !root.isLoading
|
||||||
|
|
||||||
|
|||||||
@@ -273,8 +273,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "myPkgMngr --sysupdate"
|
placeholderText: "myPkgMngr --sysupdate"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
@@ -320,8 +320,8 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: 48
|
height: 48
|
||||||
placeholderText: "-T udpClass"
|
placeholderText: "-T udpClass"
|
||||||
backgroundColor: Theme.surfaceVariant
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||||
normalBorderColor: Theme.primarySelected
|
normalBorderColor: Theme.outlineMedium
|
||||||
focusedBorderColor: Theme.primary
|
focusedBorderColor: Theme.primary
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
|
|
||||||
@@ -64,7 +65,9 @@ Flow {
|
|||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
id: repeater
|
id: repeater
|
||||||
model: root.model
|
model: ScriptModel {
|
||||||
|
values: root.model
|
||||||
|
}
|
||||||
|
|
||||||
delegate: Rectangle {
|
delegate: Rectangle {
|
||||||
id: segment
|
id: segment
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import "../Common/fzf.js" as Fzf
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import QtQuick.Effects
|
import QtQuick.Effects
|
||||||
|
import Quickshell
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
|
|
||||||
@@ -306,7 +307,9 @@ Item {
|
|||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height - (root.enableFuzzySearch ? searchContainer.height + Theme.spacingXS : 0)
|
height: parent.height - (root.enableFuzzySearch ? searchContainer.height + Theme.spacingXS : 0)
|
||||||
clip: true
|
clip: true
|
||||||
model: dropdownMenu.filteredOptions
|
model: ScriptModel {
|
||||||
|
values: dropdownMenu.filteredOptions
|
||||||
|
}
|
||||||
spacing: 2
|
spacing: 2
|
||||||
|
|
||||||
interactive: true
|
interactive: true
|
||||||
|
|||||||
@@ -30,9 +30,9 @@ StyledRect {
|
|||||||
property color leftIconColor: Theme.surfaceVariantText
|
property color leftIconColor: Theme.surfaceVariantText
|
||||||
property color leftIconFocusedColor: Theme.primary
|
property color leftIconFocusedColor: Theme.primary
|
||||||
property bool showClearButton: false
|
property bool showClearButton: false
|
||||||
property color backgroundColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
property color backgroundColor: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
||||||
property color focusedBorderColor: Theme.primary
|
property color focusedBorderColor: Theme.primary
|
||||||
property color normalBorderColor: Theme.outlineStrong
|
property color normalBorderColor: Theme.outlineMedium
|
||||||
property color placeholderColor: Theme.outlineButton
|
property color placeholderColor: Theme.outlineButton
|
||||||
property int borderWidth: 1
|
property int borderWidth: 1
|
||||||
property int focusedBorderWidth: 2
|
property int focusedBorderWidth: 2
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
{
|
{
|
||||||
"term": "3rd party",
|
"term": "3rd party",
|
||||||
"context": "3rd party",
|
"context": "3rd party",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:405",
|
"reference": "Modules/Settings/PluginBrowser.qml:408",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -326,7 +326,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Auto-hide Dock",
|
"term": "Auto-hide Dock",
|
||||||
"context": "Auto-hide Dock",
|
"context": "Auto-hide Dock",
|
||||||
"reference": "Modules/Settings/DockTab.qml:128",
|
"reference": "Modules/Settings/DockTab.qml:182",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -542,7 +542,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Browse Plugins",
|
"term": "Browse Plugins",
|
||||||
"context": "Browse Plugins",
|
"context": "Browse Plugins",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:176",
|
"reference": "Modules/Settings/PluginBrowser.qml:177",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -590,13 +590,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Cancel",
|
"term": "Cancel",
|
||||||
"context": "Cancel",
|
"context": "Cancel",
|
||||||
"reference": "Modals/BluetoothPairingModal.qml:251, Modals/PolkitAuthModal.qml:291, Modals/WifiPasswordModal.qml:494, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:627",
|
"reference": "Modals/BluetoothPairingModal.qml:251, Modals/PolkitAuthModal.qml:291, Modals/WifiPasswordModal.qml:494, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:630",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Capacity",
|
"term": "Capacity",
|
||||||
"context": "Capacity",
|
"context": "Capacity",
|
||||||
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:171, Modules/DankBar/Popouts/BatteryPopout.qml:352, Modules/DankBar/Popouts/BatteryPopout.qml:508",
|
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:171, Modules/DankBar/Popouts/BatteryPopout.qml:352, Modules/DankBar/Popouts/BatteryPopout.qml:510",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1136,7 +1136,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Disable Autoconnect",
|
"term": "Disable Autoconnect",
|
||||||
"context": "Disable Autoconnect",
|
"context": "Disable Autoconnect",
|
||||||
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:623",
|
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:625",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1172,13 +1172,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Dismiss",
|
"term": "Dismiss",
|
||||||
"context": "Dismiss",
|
"context": "Dismiss",
|
||||||
"reference": "Modules/Notifications/Popup/NotificationPopup.qml:24, Modules/Notifications/Center/NotificationCard.qml:540, Modules/Notifications/Center/NotificationCard.qml:633",
|
"reference": "Modules/Notifications/Popup/NotificationPopup.qml:24, Modules/Notifications/Center/NotificationCard.qml:542, Modules/Notifications/Center/NotificationCard.qml:635",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen",
|
"term": "Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen",
|
||||||
"context": "Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen",
|
"context": "Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen",
|
||||||
"reference": "Modules/Settings/DockTab.qml:186",
|
"reference": "Modules/Settings/DockTab.qml:135",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1250,7 +1250,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Dock Transparency",
|
"term": "Dock Transparency",
|
||||||
"context": "Dock Transparency",
|
"context": "Dock Transparency",
|
||||||
"reference": "Modules/Settings/DockTab.qml:623",
|
"reference": "Modules/Settings/DockTab.qml:595",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1310,7 +1310,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Enable Autoconnect",
|
"term": "Enable Autoconnect",
|
||||||
"context": "Enable Autoconnect",
|
"context": "Enable Autoconnect",
|
||||||
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:623",
|
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:625",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1628,7 +1628,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Forget Network",
|
"term": "Forget Network",
|
||||||
"context": "Forget Network",
|
"context": "Forget Network",
|
||||||
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:646",
|
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:648",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1718,13 +1718,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Group by App",
|
"term": "Group by App",
|
||||||
"context": "Group by App",
|
"context": "Group by App",
|
||||||
"reference": "Modules/Settings/DockTab.qml:297",
|
"reference": "Modules/Settings/DockTab.qml:305",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Group multiple windows of the same app together with a window count indicator",
|
"term": "Group multiple windows of the same app together with a window count indicator",
|
||||||
"context": "Group multiple windows of the same app together with a window count indicator",
|
"context": "Group multiple windows of the same app together with a window count indicator",
|
||||||
"reference": "Modules/Settings/DockTab.qml:304",
|
"reference": "Modules/Settings/DockTab.qml:312",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1736,13 +1736,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Health",
|
"term": "Health",
|
||||||
"context": "Health",
|
"context": "Health",
|
||||||
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:136, Modules/DankBar/Popouts/BatteryPopout.qml:317, Modules/DankBar/Popouts/BatteryPopout.qml:471",
|
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:136, Modules/DankBar/Popouts/BatteryPopout.qml:317, Modules/DankBar/Popouts/BatteryPopout.qml:473",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Height to Edge Gap (Exclusive Zone)",
|
"term": "Height to Edge Gap (Exclusive Zone)",
|
||||||
"context": "Height to Edge Gap (Exclusive Zone)",
|
"context": "Height to Edge Gap (Exclusive Zone)",
|
||||||
"reference": "Modules/Settings/DockTab.qml:533",
|
"reference": "Modules/Settings/DockTab.qml:514",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1760,7 +1760,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
"term": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
||||||
"context": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
"context": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
||||||
"reference": "Modules/Settings/DockTab.qml:135",
|
"reference": "Modules/Settings/DockTab.qml:189",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1796,13 +1796,13 @@
|
|||||||
{
|
{
|
||||||
"term": "I Understand",
|
"term": "I Understand",
|
||||||
"context": "I Understand",
|
"context": "I Understand",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:633",
|
"reference": "Modules/Settings/PluginBrowser.qml:636",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Icon Size",
|
"term": "Icon Size",
|
||||||
"context": "Icon Size",
|
"context": "Icon Size",
|
||||||
"reference": "Modules/Settings/DockTab.qml:429",
|
"reference": "Modules/Settings/DockTab.qml:419",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1856,7 +1856,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Indicator Style",
|
"term": "Indicator Style",
|
||||||
"context": "Indicator Style",
|
"context": "Indicator Style",
|
||||||
"reference": "Modules/Settings/DockTab.qml:364",
|
"reference": "Modules/Settings/DockTab.qml:363",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1880,7 +1880,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Install plugins from the DMS plugin registry",
|
"term": "Install plugins from the DMS plugin registry",
|
||||||
"context": "Install plugins from the DMS plugin registry",
|
"context": "Install plugins from the DMS plugin registry",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:230",
|
"reference": "Modules/Settings/PluginBrowser.qml:231",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2006,7 +2006,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Left",
|
"term": "Left",
|
||||||
"context": "Left",
|
"context": "Left",
|
||||||
"reference": "Modules/Settings/DankBarTab.qml:763, Modules/DankBar/Popouts/BatteryPopout.qml:540",
|
"reference": "Modules/Settings/DankBarTab.qml:763, Modules/DankBar/Popouts/BatteryPopout.qml:542",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2036,7 +2036,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Loading plugins...",
|
"term": "Loading plugins...",
|
||||||
"context": "Loading plugins...",
|
"context": "Loading plugins...",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:298",
|
"reference": "Modules/Settings/PluginBrowser.qml:299",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2114,7 +2114,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Margin",
|
"term": "Margin",
|
||||||
"context": "Margin",
|
"context": "Margin",
|
||||||
"reference": "Modules/Settings/DockTab.qml:561",
|
"reference": "Modules/Settings/DockTab.qml:542",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2330,7 +2330,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Network Info",
|
"term": "Network Info",
|
||||||
"context": "Network Info",
|
"context": "Network Info",
|
||||||
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:344, Modules/ControlCenter/Details/NetworkDetail.qml:600",
|
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:345, Modules/ControlCenter/Details/NetworkDetail.qml:602",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2450,7 +2450,7 @@
|
|||||||
{
|
{
|
||||||
"term": "No plugins found",
|
"term": "No plugins found",
|
||||||
"context": "No plugins found",
|
"context": "No plugins found",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:530",
|
"reference": "Modules/Settings/PluginBrowser.qml:533",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2642,7 +2642,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Padding",
|
"term": "Padding",
|
||||||
"context": "Padding",
|
"context": "Padding",
|
||||||
"reference": "Modules/Settings/DockTab.qml:505",
|
"reference": "Modules/Settings/DockTab.qml:486",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2852,7 +2852,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Power Profile Degradation",
|
"term": "Power Profile Degradation",
|
||||||
"context": "Power Profile Degradation",
|
"context": "Power Profile Degradation",
|
||||||
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:240, Modules/DankBar/Popouts/BatteryPopout.qml:625",
|
"reference": "Modules/ControlCenter/Details/BatteryDetail.qml:240, Modules/DankBar/Popouts/BatteryPopout.qml:627",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -2906,7 +2906,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Process",
|
"term": "Process",
|
||||||
"context": "Process",
|
"context": "Process",
|
||||||
"reference": "Modules/ProcessList/ProcessListView.qml:41",
|
"reference": "Modules/ProcessList/ProcessListView.qml:42",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3146,13 +3146,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Search plugins...",
|
"term": "Search plugins...",
|
||||||
"context": "Search plugins...",
|
"context": "Search plugins...",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:254",
|
"reference": "Modules/Settings/PluginBrowser.qml:255",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Search...",
|
"term": "Search...",
|
||||||
"context": "Search...",
|
"context": "Search...",
|
||||||
"reference": "Widgets/DankDropdown.qml:267",
|
"reference": "Widgets/DankDropdown.qml:268",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3284,7 +3284,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Show Dock",
|
"term": "Show Dock",
|
||||||
"context": "Show Dock",
|
"context": "Show Dock",
|
||||||
"reference": "Modules/Settings/DockTab.qml:179",
|
"reference": "Modules/Settings/DockTab.qml:128",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3326,7 +3326,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Show on Overview",
|
"term": "Show on Overview",
|
||||||
"context": "Show on Overview",
|
"context": "Show on Overview",
|
||||||
"reference": "Modules/Settings/DockTab.qml:232, Modules/Settings/DankBarTab.qml:929",
|
"reference": "Modules/Settings/DockTab.qml:242, Modules/Settings/DankBarTab.qml:929",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3440,7 +3440,7 @@
|
|||||||
{
|
{
|
||||||
"term": "Spacing",
|
"term": "Spacing",
|
||||||
"context": "Spacing",
|
"context": "Spacing",
|
||||||
"reference": "Modules/Settings/DockTab.qml:492, Modules/Settings/DankBarTab.qml:988",
|
"reference": "Modules/Settings/DockTab.qml:473, Modules/Settings/DankBarTab.qml:988",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3686,13 +3686,13 @@
|
|||||||
{
|
{
|
||||||
"term": "Third-Party Plugin Warning",
|
"term": "Third-Party Plugin Warning",
|
||||||
"context": "Third-Party Plugin Warning",
|
"context": "Third-Party Plugin Warning",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:578",
|
"reference": "Modules/Settings/PluginBrowser.qml:581",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\\n\\nThese plugins may pose security and privacy risks - install at your own risk.",
|
"term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\\n\\nThese plugins may pose security and privacy risks - install at your own risk.",
|
||||||
"context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\\n\\nThese plugins may pose security and privacy risks - install at your own risk.",
|
"context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\\n\\nThese plugins may pose security and privacy risks - install at your own risk.",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:588",
|
"reference": "Modules/Settings/PluginBrowser.qml:591",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3722,7 +3722,7 @@
|
|||||||
{
|
{
|
||||||
"term": "To Full",
|
"term": "To Full",
|
||||||
"context": "To Full",
|
"context": "To Full",
|
||||||
"reference": "Modules/DankBar/Popouts/BatteryPopout.qml:538",
|
"reference": "Modules/DankBar/Popouts/BatteryPopout.qml:540",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -4178,7 +4178,7 @@
|
|||||||
{
|
{
|
||||||
"term": "official",
|
"term": "official",
|
||||||
"context": "official",
|
"context": "official",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:385",
|
"reference": "Modules/Settings/PluginBrowser.qml:388",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -4190,7 +4190,7 @@
|
|||||||
{
|
{
|
||||||
"term": "• Install only from trusted sources",
|
"term": "• Install only from trusted sources",
|
||||||
"context": "• Install only from trusted sources",
|
"context": "• Install only from trusted sources",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:611",
|
"reference": "Modules/Settings/PluginBrowser.qml:614",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -4220,13 +4220,13 @@
|
|||||||
{
|
{
|
||||||
"term": "• Plugins may contain bugs or security issues",
|
"term": "• Plugins may contain bugs or security issues",
|
||||||
"context": "• Plugins may contain bugs or security issues",
|
"context": "• Plugins may contain bugs or security issues",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:599",
|
"reference": "Modules/Settings/PluginBrowser.qml:602",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"term": "• Review code before installation when possible",
|
"term": "• Review code before installation when possible",
|
||||||
"context": "• Review code before installation when possible",
|
"context": "• Review code before installation when possible",
|
||||||
"reference": "Modules/Settings/PluginBrowser.qml:605",
|
"reference": "Modules/Settings/PluginBrowser.qml:608",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user