mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 20:21:53 +00:00
- Add complete colorshell v2.0.3 configuration to home/ags-config/ - Disable runner plugin and NightLight tile (incompatible with NixOS) - Customize SCSS with full opacity (no transparency) - Add dark pale blue color scheme in home/pywal-colors/ - Configure Papirus-Dark icon theme via home-manager - Make ~/.config/ags/ immutable and managed by Nix store - Auto-deploy pywal colors to ~/.cache/wal/colors.json All AGS configuration is now reproducible and version controlled.
29 lines
1.4 KiB
TypeScript
29 lines
1.4 KiB
TypeScript
import { Tile } from "./Tile";
|
|
import { NightLight } from "../../../../modules/nightlight";
|
|
import { PageNightLight } from "../pages/NightLight";
|
|
import { tr } from "../../../../i18n/intl";
|
|
import { TilesPages } from "../tiles";
|
|
import { isInstalled } from "../../../../modules/utils";
|
|
import { createBinding, createComputed } from "ags";
|
|
|
|
|
|
export const TileNightLight = () =>
|
|
<Tile title={tr("control_center.tiles.night_light.title")}
|
|
icon={"weather-clear-night-symbolic"}
|
|
description={createComputed([
|
|
createBinding(NightLight.getDefault(), "identity"),
|
|
createBinding(NightLight.getDefault(), "temperature"),
|
|
createBinding(NightLight.getDefault(), "gamma")
|
|
], (identity, temp, gamma) => !identity ?
|
|
`${temp === NightLight.getDefault().identityTemperature ?
|
|
tr("control_center.tiles.night_light.default_desc") : `${temp}K`
|
|
} ${gamma < NightLight.getDefault().maxGamma ? `(${gamma}%)` : ""}`
|
|
: tr("control_center.tiles.disabled")
|
|
)}
|
|
hasArrow visible={isInstalled("hyprsunset")}
|
|
onDisabled={() => NightLight.getDefault().identity = true}
|
|
onEnabled={() => NightLight.getDefault().identity = false}
|
|
onClicked={() => TilesPages?.toggle(PageNightLight)}
|
|
state={createBinding(NightLight.getDefault(), "identity").as(identity => !identity)}
|
|
/>
|