mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 22:00:38 -04:00
updates
This commit is contained in:
parent
1f8cb3c145
commit
610604e80f
253 changed files with 27055 additions and 44 deletions
43
.config/ags/old/modules/overview/Overview.js
Normal file
43
.config/ags/old/modules/overview/Overview.js
Normal file
|
@ -0,0 +1,43 @@
|
|||
import PopupWindow from "../PopupWindow.js"
|
||||
import Workspace from "./Workspace.js"
|
||||
import options from "../../options.js"
|
||||
import { range } from "../../lib/utils.js"
|
||||
|
||||
const hyprland = await Service.import("hyprland")
|
||||
|
||||
const Overview = (ws) => Widget.Box({
|
||||
class_name: "overview horizontal",
|
||||
// spacing: 10,
|
||||
children: ws > 0
|
||||
? range(ws).map(Workspace)
|
||||
: hyprland.workspaces
|
||||
.map(({ id }) => Workspace(id))
|
||||
.sort((a, b) => a.attribute.id - b.attribute.id),
|
||||
|
||||
setup: w => {
|
||||
if (ws > 0)
|
||||
return
|
||||
|
||||
w.hook(hyprland, (w, id) => {
|
||||
if (id === undefined)
|
||||
return
|
||||
|
||||
w.children = w.children
|
||||
.filter(ch => ch.attribute.id !== Number(id))
|
||||
}, "workspace-removed")
|
||||
w.hook(hyprland, (w, id) => {
|
||||
if (id === undefined)
|
||||
return
|
||||
|
||||
w.children = [...w.children, Workspace(Number(id))]
|
||||
.sort((a, b) => a.attribute.id - b.attribute.id)
|
||||
}, "workspace-added")
|
||||
},
|
||||
})
|
||||
|
||||
export default () => PopupWindow({
|
||||
name: "overview",
|
||||
layout: "center",
|
||||
transition: "slide_down",
|
||||
child: Overview(options.overview.workspaces),
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue