summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 17:18:14 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 17:18:14 +1000
commit2809db15067fa8218cdfd3119efef3461d8e9fef (patch)
tree19430b27b35f482ce0ccc17d9ae80a67550363e4
parentbar: use loaders (diff)
downloadcaelestia-shell-2809db15067fa8218cdfd3119efef3461d8e9fef.tar.gz
caelestia-shell-2809db15067fa8218cdfd3119efef3461d8e9fef.tar.bz2
caelestia-shell-2809db15067fa8218cdfd3119efef3461d8e9fef.zip
dev: some cleanup
-rw-r--r--modules/bar/components/workspaces/Workspace.qml3
-rwxr-xr-xrun.fish3
2 files changed, 1 insertions, 5 deletions
diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml
index a29e61b..5d76861 100644
--- a/modules/bar/components/workspaces/Workspace.qml
+++ b/modules/bar/components/workspaces/Workspace.qml
@@ -52,9 +52,6 @@ Item {
anchors.horizontalCenter: root.vertical ? indicator.horizontalCenter : undefined
sourceComponent: Box {
- anchors.horizontalCenter: root.vertical ? parent.horizontalCenter : undefined
- anchors.verticalCenter: root.vertical ? undefined : parent.verticalCenter
-
Repeater {
model: ScriptModel {
values: Hyprland.clients.filter(c => c.workspace?.id === root.ws)
diff --git a/run.fish b/run.fish
index 78cd42b..9407830 100755
--- a/run.fish
+++ b/run.fish
@@ -4,8 +4,7 @@ set -l dbus 'quickshell.dbus.properties.warning = false' # System tray dbus pro
set -l hypr 'invalid nullptr parameter' # Error that always pops up on Hyprland
set -l intercept '^qsintercept:.*(:[0-9]+){2}$' # Empty qsintercept lines
set -l loop 'Binding loop detected' # Binding loops
-set -l icons 'Searching custom icon paths is not yet supported' # Error for system tray icons
set -l process 'QProcess: Destroyed while process' # Long running processes on reload
set -l asyncLoader 'items in the process of being created at engine destruction' # Async loaders on reload
-qs -c caelestia --log-rules $dbus | grep -vE -e $hypr -e $intercept -e $loop -e $icons -e $process -e $asyncLoader
+qs -c caelestia --log-rules $dbus | grep -vE -e $hypr -e $intercept -e $loop -e $process -e $asyncLoader