mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
- Add surface shift option, start from surface by default (previously was surfaceContainer). Old colors can be attained by changing it back to "container" in theme colors - Remove borders on surface elements, mostly - Fix popup distances - Use surfaceContainer/sch by default on widgets
301 lines
14 KiB
QML
301 lines
14 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import Quickshell.Widgets
|
|
import qs.Common
|
|
import qs.Widgets
|
|
|
|
Item {
|
|
id: recentAppsTab
|
|
|
|
DankFlickable {
|
|
anchors.fill: parent
|
|
anchors.topMargin: Theme.spacingL
|
|
clip: true
|
|
contentHeight: mainColumn.height
|
|
contentWidth: width
|
|
|
|
Column {
|
|
id: mainColumn
|
|
width: parent.width
|
|
spacing: Theme.spacingXL
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: launchPrefixSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.surfaceContainerHigh
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
|
Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: launchPrefixSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "terminal"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: "Launch Prefix"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
text: "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers."
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
|
|
DankTextField {
|
|
width: parent.width
|
|
text: SessionData.launchPrefix
|
|
placeholderText: "Enter launch prefix (e.g., 'uwsm-app')"
|
|
onTextEdited: {
|
|
SessionData.setLaunchPrefix(text)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: recentlyUsedSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.surfaceContainerHigh
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g,
|
|
Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: recentlyUsedSection
|
|
|
|
property var rankedAppsModel: {
|
|
var apps = []
|
|
for (var appId in (AppUsageHistoryData.appUsageRanking
|
|
|| {})) {
|
|
var appData = (AppUsageHistoryData.appUsageRanking
|
|
|| {})[appId]
|
|
apps.push({
|
|
"id": appId,
|
|
"name": appData.name,
|
|
"exec": appData.exec,
|
|
"icon": appData.icon,
|
|
"comment": appData.comment,
|
|
"usageCount": appData.usageCount,
|
|
"lastUsed": appData.lastUsed
|
|
})
|
|
}
|
|
apps.sort(function (a, b) {
|
|
if (a.usageCount !== b.usageCount)
|
|
return b.usageCount - a.usageCount
|
|
|
|
return a.name.localeCompare(b.name)
|
|
})
|
|
return apps.slice(0, 20)
|
|
}
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "history"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: "Recently Used Apps"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Item {
|
|
width: parent.width - parent.children[0].width
|
|
- parent.children[1].width
|
|
- clearAllButton.width - Theme.spacingM * 3
|
|
height: 1
|
|
}
|
|
|
|
DankActionButton {
|
|
id: clearAllButton
|
|
|
|
iconName: "delete_sweep"
|
|
iconSize: Theme.iconSize - 2
|
|
iconColor: Theme.error
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onClicked: {
|
|
AppUsageHistoryData.appUsageRanking = {}
|
|
SettingsData.saveSettings()
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
text: "Apps are ordered by usage frequency, then last used, then alphabetically."
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
|
|
Column {
|
|
id: rankedAppsList
|
|
|
|
width: parent.width
|
|
spacing: Theme.spacingS
|
|
|
|
Repeater {
|
|
model: recentlyUsedSection.rankedAppsModel
|
|
|
|
delegate: Rectangle {
|
|
width: rankedAppsList.width
|
|
height: 48
|
|
radius: Theme.cornerRadius
|
|
color: Qt.rgba(Theme.surfaceContainer.r,
|
|
Theme.surfaceContainer.g,
|
|
Theme.surfaceContainer.b, 0.3)
|
|
border.color: Qt.rgba(Theme.outline.r,
|
|
Theme.outline.g,
|
|
Theme.outline.b, 0.1)
|
|
border.width: 0
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingM
|
|
|
|
StyledText {
|
|
text: (index + 1).toString()
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
font.weight: Font.Medium
|
|
color: Theme.primary
|
|
width: 20
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Image {
|
|
width: 24
|
|
height: 24
|
|
source: modelData.icon ? "image://icon/" + modelData.icon : "image://icon/application-x-executable"
|
|
sourceSize.width: 24
|
|
sourceSize.height: 24
|
|
fillMode: Image.PreserveAspectFit
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onStatusChanged: {
|
|
if (status === Image.Error)
|
|
source = "image://icon/application-x-executable"
|
|
}
|
|
}
|
|
|
|
Column {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: 2
|
|
|
|
StyledText {
|
|
text: modelData.name
|
|
|| "Unknown App"
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
if (!modelData.lastUsed)
|
|
return "Never used"
|
|
|
|
var date = new Date(modelData.lastUsed)
|
|
var now = new Date()
|
|
var diffMs = now - date
|
|
var diffMins = Math.floor(
|
|
diffMs / (1000 * 60))
|
|
var diffHours = Math.floor(
|
|
diffMs / (1000 * 60 * 60))
|
|
var diffDays = Math.floor(
|
|
diffMs / (1000 * 60 * 60 * 24))
|
|
if (diffMins < 1)
|
|
return "Last launched just now"
|
|
|
|
if (diffMins < 60)
|
|
return "Last launched " + diffMins + " minute"
|
|
+ (diffMins === 1 ? "" : "s") + " ago"
|
|
|
|
if (diffHours < 24)
|
|
return "Last launched " + diffHours + " hour"
|
|
+ (diffHours === 1 ? "" : "s") + " ago"
|
|
|
|
if (diffDays < 7)
|
|
return "Last launched " + diffDays + " day"
|
|
+ (diffDays === 1 ? "" : "s") + " ago"
|
|
|
|
return "Last launched " + date.toLocaleDateString()
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
}
|
|
}
|
|
}
|
|
|
|
DankActionButton {
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.spacingM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
circular: true
|
|
iconName: "close"
|
|
iconSize: 16
|
|
iconColor: Theme.error
|
|
onClicked: {
|
|
var currentRanking = Object.assign(
|
|
{},
|
|
AppUsageHistoryData.appUsageRanking
|
|
|| {})
|
|
delete currentRanking[modelData.id]
|
|
AppUsageHistoryData.appUsageRanking = currentRanking
|
|
SettingsData.saveSettings()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
text: recentlyUsedSection.rankedAppsModel.length
|
|
=== 0 ? "No apps have been launched yet." : ""
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
color: Theme.surfaceVariantText
|
|
horizontalAlignment: Text.AlignHCenter
|
|
visible: recentlyUsedSection.rankedAppsModel.length === 0
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|