diff options
Diffstat (limited to '.config/ags')
| -rw-r--r-- | .config/ags/lib/hyprland.ts | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.config/ags/lib/hyprland.ts b/.config/ags/lib/hyprland.ts index b121ed7..7f6a68c 100644 --- a/.config/ags/lib/hyprland.ts +++ b/.config/ags/lib/hyprland.ts @@ -51,19 +51,19 @@ function sendBatch(batch: string[]) { async function setupHyprland() { const wm_gaps = Math.floor(hyprland.gaps.value * spacing.value) - sendBatch([ - `general:border_size ${width}`, - `general:gaps_out ${wm_gaps}`, - `general:gaps_in ${Math.floor(wm_gaps / 2)}`, - `general:col.active_border rgba(${activeBorder()}ff)`, - `general:col.inactive_border rgba(${hyprland.inactiveBorder.value})`, - `decoration:rounding ${radius}`, - `decoration:drop_shadow ${shadows.value ? "yes" : "no"}`, - `dwindle:no_gaps_when_only ${hyprland.gapsWhenOnly.value ? 0 : 1}`, - `master:no_gaps_when_only ${hyprland.gapsWhenOnly.value ? 0 : 1}`, - ]) + //sendBatch([ + // `general:border_size ${width}`, + // `general:gaps_out ${wm_gaps}`, + // `general:gaps_in ${Math.floor(wm_gaps / 2)}`, + // `general:col.active_border rgba(${activeBorder()}ff)`, + // `general:col.inactive_border rgba(${hyprland.inactiveBorder.value})`, + // `decoration:rounding ${radius}`, + // `decoration:drop_shadow ${shadows.value ? "yes" : "no"}`, + // `dwindle:no_gaps_when_only ${hyprland.gapsWhenOnly.value ? 0 : 1}`, + // `master:no_gaps_when_only ${hyprland.gapsWhenOnly.value ? 0 : 1}`, + //]) - await sendBatch(App.windows.map(({ name }) => `layerrule unset, ${name}`)) + //await sendBatch(App.windows.map(({ name }) => `layerrule unset, ${name}`)) if (blur.value > 0) { sendBatch(App.windows.flatMap(({ name }) => [ |
