Small Settings.qml update

This commit is contained in:
ly-sec 2025-07-13 16:20:47 +02:00
parent c78b61842e
commit 454801a772

View file

@ -1,17 +1,20 @@
pragma Singleton pragma Singleton
import QtQuick import QtQuick
import QtCore import QtCore
import Quickshell
import qs.Services import qs.Services
QtObject { QtObject {
Component.onCompleted: { Component.onCompleted: {
Qt.application.name = "quickshell" Qt.application.name = "quickshell"
Qt.application.organization = "quisckshell" Qt.application.organization = "quickshell"
console.log(Qt.application.organization)
Qt.application.domain = "quickshell.app" Qt.application.domain = "quickshell.app"
loadSettings() loadSettings()
} }
property string weatherCity: "Dinslaken" property string weatherCity: "Dinslaken"
property string profileImage: "/home/user/.face" property string profileImage: "/home/" + Quickshell.env("USER") + "/.face"
property bool useFahrenheit property bool useFahrenheit
property string wallpaperFolder: "/usr/share/wallpapers" property string wallpaperFolder: "/usr/share/wallpapers"
property string currentWallpaper: "" property string currentWallpaper: ""