init commit

This commit is contained in:
2026-06-11 11:01:51 +05:30
commit 72e90c145e
36 changed files with 2380 additions and 0 deletions

21
wayle/config.toml Normal file
View File

@@ -0,0 +1,21 @@
# Wayle configuration file
[[bar.layout]]
monitor = "*"
left = ["media", "custom-hy3-split","hyprland-workspaces"]
center = ["clock"]
right = ["custom-gpu-temp", "battery", "bluetooth", "network", "microphone", "volume"]
[[modules.custom]]
id="gpu-temp"
command = "nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader"
interval-ms = 5000
icon-name = "ld-thermometer-symbolic"
format = "{{ output }}"
[[modules.custom]]
id = "hy3-split"
command = "cat /tmp/hy3_split 2>/dev/null || echo H"
interval-ms = 250
icon-name = "ld-layers-symbolic"
format = "{{ output }}"

7
wayle/config.toml.save Normal file
View File

@@ -0,0 +1,7 @@
# Wayle configuration file
[[bar.layout]]
monitor = "*"
left = ["hyprland-workspaces"]
center = ["clock"]
right = ["battery", "bluetooth", "network", "microphone", "volume"]

0
wayle/runtime.toml Normal file
View File

1
wayle/schema.json Normal file

File diff suppressed because one or more lines are too long

61
wayle/themes/schema.json Normal file
View File

@@ -0,0 +1,61 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Palette",
"description": "Ten-color palette for CSS generation.",
"type": "object",
"properties": {
"bg": {
"description": "Base background color (darkest).",
"type": "string"
},
"surface": {
"description": "Card and sidebar background.",
"type": "string"
},
"elevated": {
"description": "Raised element background.",
"type": "string"
},
"fg": {
"description": "Primary text color.",
"type": "string"
},
"fg_muted": {
"description": "Secondary text color.",
"type": "string"
},
"primary": {
"description": "Accent color for interactive elements.",
"type": "string"
},
"red": {
"description": "Red palette color.",
"type": "string"
},
"yellow": {
"description": "Yellow palette color.",
"type": "string"
},
"green": {
"description": "Green palette color.",
"type": "string"
},
"blue": {
"description": "Blue palette color.",
"type": "string"
}
},
"required": [
"bg",
"surface",
"elevated",
"fg",
"fg_muted",
"primary",
"red",
"yellow",
"green",
"blue"
],
"$id": "wayle-theme-0.2.3"
}

10
wayle/tombi.toml Normal file
View File

@@ -0,0 +1,10 @@
[schema]
enabled = true
[[schemas]]
path = "./schema.json"
include = ["config.toml", "runtime.toml"]
[[schemas]]
path = "./themes/schema.json"
include = ["themes/*.toml"]