Distribution-agnostic provisioning script that sets up a new Linux machine (Detected via lib/distro.sh - supports Debian/Ubuntu/Pop and Fedora families). 13 stages covering: - System packages, external repos, toolchains (nvm, uv, Python) - Shell config (zsh, oh-my-zsh, p10k), git, SSH - Custom uv tools from ~40 git repos - Desktop config (keybindings, hotkeys, ghostty, fonts) - Docker, system tweaks, browser/app installs - Custom systemd user services (porridge, swayidle, mempi-sync, etc.) - API keys loaded from Bitwarden at shell startup
68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
// =============================================================================
|
|
// COSMIC Desktop — Compositor Settings (RON format)
|
|
// File location: ~/.config/cosmic/com.system76.CosmicComp/v1/...
|
|
// FOR REFERENCE ONLY — adapt to your target DE.
|
|
// =============================================================================
|
|
|
|
// ---- XKB keyboard config ----
|
|
// Location: .../v1/xkb_config
|
|
(
|
|
rules: "",
|
|
model: "",
|
|
layout: "us",
|
|
variant: "",
|
|
options: Some("compose:ralt"), // Right Alt = Compose key
|
|
repeat_delay: 600,
|
|
repeat_rate: 25,
|
|
)
|
|
|
|
// ---- Touchpad ----
|
|
// Location: .../v1/input_touchpad
|
|
(
|
|
state: Enabled,
|
|
acceleration: Some((profile: Some(Flat), speed: 0.3213816999010042)),
|
|
click_method: Some(Clickfinger),
|
|
scroll_config: Some((
|
|
method: Some(TwoFinger),
|
|
natural_scroll: Some(true),
|
|
scroll_button: None,
|
|
scroll_factor: None,
|
|
)),
|
|
tap_config: Some((
|
|
enabled: true,
|
|
button_map: Some(LeftRightMiddle),
|
|
drag: true,
|
|
drag_lock: false,
|
|
)),
|
|
)
|
|
|
|
// ---- Mouse ----
|
|
// Location: .../v1/input_default
|
|
(
|
|
state: Enabled,
|
|
acceleration: Some((profile: Some(Flat), speed: 0.4628044123886297)),
|
|
scroll_config: Some((
|
|
method: None,
|
|
natural_scroll: Some(false),
|
|
scroll_button: None,
|
|
scroll_factor: Some(1.0),
|
|
)),
|
|
)
|
|
|
|
// ---- Workspaces ----
|
|
// Location: .../v1/workspaces
|
|
(
|
|
workspace_mode: OutputBound,
|
|
workspace_layout: Horizontal,
|
|
action_on_typing: None,
|
|
workspace_wraparound: true,
|
|
)
|
|
|
|
// ---- Autotile ----
|
|
// Location: .../v1/autotile
|
|
false
|
|
|
|
// ---- Autotile behavior ----
|
|
// Location: .../v1/autotile_behavior
|
|
PerWorkspace
|