mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
13 lines
636 B
QML
13 lines
636 B
QML
import Qt.labs.platform
|
|
import QtQuick
|
|
import Quickshell
|
|
pragma Singleton
|
|
pragma ComponentBehavior: Bound
|
|
|
|
Singleton {
|
|
readonly property string config: StandardPaths.standardLocations(StandardPaths.ConfigLocation)[0]
|
|
readonly property string state: StandardPaths.standardLocations(StandardPaths.StateLocation)[0]
|
|
readonly property string cache: StandardPaths.standardLocations(StandardPaths.CacheLocation)[0]
|
|
readonly property string pictures: StandardPaths.standardLocations(StandardPaths.PicturesLocation)[0]
|
|
readonly property string downloads: StandardPaths.standardLocations(StandardPaths.DownloadLocation)[0]
|
|
}
|