sway workspace indicator

This commit is contained in:
end-4
2024-01-25 15:53:57 +07:00
parent fb2cb6ed7e
commit c5744aa2fe
4 changed files with 482 additions and 369 deletions
+5 -2
View File
@@ -11,8 +11,11 @@ const OptionalWorkspaces = async () => {
try {
return (await import('./workspaces_hyprland.js')).default();
} catch {
// return (await import('./workspaces_sway.js')).default();
return null;
try {
return (await import('./workspaces_sway.js')).default();
} catch {
return null;
}
}
};