- UL above details
- Second LI
Summary in outer details
Details below summary
| set $lock_timeout 3600 | |
| set $screen_timeout 60 |
| // -*- mode: jsonc -*- | |
| { | |
| // "layer": "top", // Waybar at top layer | |
| // "position": "bottom", // Waybar position (top|bottom|left|right) | |
| "height": 30, // Waybar height (to be removed for auto height) | |
| // "width": 1280, // Waybar width | |
| "spacing": 4, // Gaps between modules (4px) | |
| // Choose the order of the modules | |
| "modules-left": [ | |
| "sway/workspaces", |
| #!/usr/bin/env bash | |
| set -eo pipefail | |
| echo "==========================================================" | |
| echo " HP Pavilion x360 Setup: Diagnostics & Pi Agent Installer " | |
| echo "==========================================================" | |
| echo "" | |
| # 1. Update system and install required tools | |
| echo "[1/5] Installing DNF packages (Node.js, Git, Diagnostics)..." |
| # copy and paste to /sbin/remove-desktop | |
| #!/bin/sh | |
| PREFIX= | |
| : ${LIBDIR=$PREFIX/lib} | |
| . "$LIBDIR/libalpine.sh" | |
| usage() { | |
| cat <<-__EOF__ |
| /* | |
| Density histogram with a vertical rule and some other formatting. | |
| */ | |
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "datasets": { | |
| "linedata": [ | |
| {"b": 5}, | |
| {"b": 20}, | |
| {"b": 20}, |
| /* Vertical rule using datasets */ | |
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "datasets": { | |
| "linedata": [ | |
| {"a": 1, "b": 30}, | |
| {"a": 2, "b": 45}, | |
| {"a": 3, "b": 50}, | |
| {"a": 4, "b": 60}, | |
| {"a": 5, "b": 70}, |
| /* Layering a verticle rule over existing data (with a control to boot) */ | |
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "params": [ | |
| { | |
| "name": "x1", | |
| "value": 5, | |
| "bind": {"input": "range", "min": 0, "max": 10, "step": 1} | |
| } | |
| ], |