mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
54 lines
3.9 KiB
QML
54 lines
3.9 KiB
QML
pragma Singleton
|
|
pragma ComponentBehavior: Bound
|
|
|
|
import qs.modules.common.functions
|
|
import Qt.labs.platform
|
|
import QtQuick
|
|
import Quickshell
|
|
|
|
Singleton {
|
|
// XDG Dirs, with "file://"
|
|
readonly property string home: StandardPaths.standardLocations(StandardPaths.HomeLocation)[0]
|
|
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 genericCache: StandardPaths.standardLocations(StandardPaths.GenericCacheLocation)[0]
|
|
readonly property string documents: StandardPaths.standardLocations(StandardPaths.DocumentsLocation)[0]
|
|
readonly property string downloads: StandardPaths.standardLocations(StandardPaths.DownloadLocation)[0]
|
|
readonly property string pictures: StandardPaths.standardLocations(StandardPaths.PicturesLocation)[0]
|
|
readonly property string music: StandardPaths.standardLocations(StandardPaths.MusicLocation)[0]
|
|
readonly property string videos: StandardPaths.standardLocations(StandardPaths.MoviesLocation)[0]
|
|
|
|
// Other dirs used by the shell, without "file://"
|
|
property string assetsPath: Quickshell.shellPath("assets")
|
|
property string scriptPath: Quickshell.shellPath("scripts")
|
|
property string favicons: FileUtils.trimFileProtocol(`${Directories.cache}/media/favicons`)
|
|
property string coverArt: FileUtils.trimFileProtocol(`${Directories.cache}/media/coverart`)
|
|
property string booruPreviews: FileUtils.trimFileProtocol(`${Directories.cache}/media/boorus`)
|
|
property string booruDownloads: FileUtils.trimFileProtocol(Directories.pictures + "/homework")
|
|
property string booruDownloadsNsfw: FileUtils.trimFileProtocol(Directories.pictures + "/homework/🌶️")
|
|
property string latexOutput: FileUtils.trimFileProtocol(`${Directories.cache}/media/latex`)
|
|
property string shellConfig: FileUtils.trimFileProtocol(`${Directories.config}/illogical-impulse`)
|
|
property string shellConfigName: "config.json"
|
|
property string shellConfigPath: `${Directories.shellConfig}/${Directories.shellConfigName}`
|
|
property string todoPath: FileUtils.trimFileProtocol(`${Directories.state}/user/todo.json`)
|
|
property string notificationsPath: FileUtils.trimFileProtocol(`${Directories.cache}/notifications/notifications.json`)
|
|
property string generatedMaterialThemePath: FileUtils.trimFileProtocol(`${Directories.state}/user/generated/colors.json`)
|
|
property string cliphistDecode: FileUtils.trimFileProtocol(`/tmp/quickshell/media/cliphist`)
|
|
property string screenshotTemp: "/tmp/quickshell/media/screenshot"
|
|
property string wallpaperSwitchScriptPath: FileUtils.trimFileProtocol(`${Directories.scriptPath}/colors/switchwall.sh`)
|
|
property string defaultAiPrompts: Quickshell.shellPath("defaults/ai/prompts")
|
|
property string userAiPrompts: FileUtils.trimFileProtocol(`${Directories.shellConfig}/ai/prompts`)
|
|
property string aiChats: FileUtils.trimFileProtocol(`${Directories.state}/user/ai/chats`)
|
|
// Cleanup on init
|
|
Component.onCompleted: {
|
|
Quickshell.execDetached(["mkdir", "-p", `${shellConfig}`])
|
|
Quickshell.execDetached(["mkdir", "-p", `${favicons}`])
|
|
Quickshell.execDetached(["bash", "-c", `rm -rf '${coverArt}'; mkdir -p '${coverArt}'`])
|
|
Quickshell.execDetached(["bash", "-c", `rm -rf '${booruPreviews}'; mkdir -p '${booruPreviews}'`])
|
|
Quickshell.execDetached(["bash", "-c", `mkdir -p '${booruDownloads}' && mkdir -p '${booruDownloadsNsfw}'`])
|
|
Quickshell.execDetached(["bash", "-c", `rm -rf '${latexOutput}'; mkdir -p '${latexOutput}'`])
|
|
Quickshell.execDetached(["bash", "-c", `rm -rf '${cliphistDecode}'; mkdir -p '${cliphistDecode}'`])
|
|
Quickshell.execDetached(["mkdir", "-p", `${aiChats}`])
|
|
}
|
|
}
|