diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 18:02:28 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 18:02:28 +1000 |
| commit | 4598e8a775bf74c226e1c1a874529423fa55fe4a (patch) | |
| tree | 043a8b8530ebaa26ccffcaaf019dcca4c4a371c9 /services | |
| parent | notifs: remove body if empty (diff) | |
| download | caelestia-shell-4598e8a775bf74c226e1c1a874529423fa55fe4a.tar.gz caelestia-shell-4598e8a775bf74c226e1c1a874529423fa55fe4a.tar.bz2 caelestia-shell-4598e8a775bf74c226e1c1a874529423fa55fe4a.zip | |
internal: use new qs imports
Diffstat (limited to 'services')
| -rw-r--r-- | services/Brightness.qml | 2 | ||||
| -rw-r--r-- | services/Cava.qml | 2 | ||||
| -rw-r--r-- | services/Colours.qml | 4 | ||||
| -rw-r--r-- | services/Notifs.qml | 4 | ||||
| -rw-r--r-- | services/Players.qml | 2 | ||||
| -rw-r--r-- | services/Requests.qml | 4 | ||||
| -rw-r--r-- | services/Wallpapers.qml | 4 | ||||
| -rw-r--r-- | services/Weather.qml | 4 |
8 files changed, 13 insertions, 13 deletions
diff --git a/services/Brightness.qml b/services/Brightness.qml index c317833..dfef1b6 100644 --- a/services/Brightness.qml +++ b/services/Brightness.qml @@ -1,7 +1,7 @@ pragma Singleton pragma ComponentBehavior: Bound -import "root:/widgets" +import qs.widgets import Quickshell import Quickshell.Io import QtQuick diff --git a/services/Cava.qml b/services/Cava.qml index e7d3a63..7c5a4a7 100644 --- a/services/Cava.qml +++ b/services/Cava.qml @@ -1,6 +1,6 @@ pragma Singleton -import "root:/config" +import qs.config import Quickshell import Quickshell.Io import QtQuick diff --git a/services/Colours.qml b/services/Colours.qml index 9492c8b..554a244 100644 --- a/services/Colours.qml +++ b/services/Colours.qml @@ -1,7 +1,7 @@ pragma Singleton -import "root:/config" -import "root:/utils" +import qs.config +import qs.utils import Quickshell import Quickshell.Io import QtQuick diff --git a/services/Notifs.qml b/services/Notifs.qml index 2ccb8a6..a24c4aa 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -1,8 +1,8 @@ pragma Singleton pragma ComponentBehavior: Bound -import "root:/widgets" -import "root:/config" +import qs.widgets +import qs.config import Quickshell import Quickshell.Io import Quickshell.Services.Notifications diff --git a/services/Players.qml b/services/Players.qml index e9a3de4..3e259d3 100644 --- a/services/Players.qml +++ b/services/Players.qml @@ -1,6 +1,6 @@ pragma Singleton -import "root:/widgets" +import qs.widgets import Quickshell import Quickshell.Io import Quickshell.Services.Mpris diff --git a/services/Requests.qml b/services/Requests.qml index 36e9120..a6a1d1d 100644 --- a/services/Requests.qml +++ b/services/Requests.qml @@ -1,7 +1,7 @@ pragma Singleton -import "root:/config" -import "root:/utils" +import qs.config +import qs.utils import Quickshell Singleton { diff --git a/services/Wallpapers.qml b/services/Wallpapers.qml index 5a84d8d..b81a891 100644 --- a/services/Wallpapers.qml +++ b/services/Wallpapers.qml @@ -1,8 +1,8 @@ pragma Singleton -import "root:/config" import "root:/utils/scripts/fuzzysort.js" as Fuzzy -import "root:/utils" +import qs.config +import qs.utils import Quickshell import Quickshell.Io import QtQuick diff --git a/services/Weather.qml b/services/Weather.qml index ae0e0b6..493a2a0 100644 --- a/services/Weather.qml +++ b/services/Weather.qml @@ -1,7 +1,7 @@ pragma Singleton -import "root:/config" -import "root:/utils" +import qs.config +import qs.utils import Quickshell import QtQuick |