Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## Unreleased

### Added
- WezTerm: configuration and wallbash theming, selectable as an optional dot and as a session terminal

### Removed
- Hyprland: dropped the legacy hyprlang dot, the files it deployed no longer exist

Expand Down
1 change: 1 addition & 0 deletions Configs/.config/xdg-terminals.list
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
kitty.desktop
Alacritty.desktop
foot.desktop
org.wezfurlong.wezterm.desktop
1 change: 1 addition & 0 deletions Scripts/dots-groups/optionals.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"../dots/fish.toml",
"../dots/wallbash-vim.toml",
"../dots/spotify.toml",
"../dots/wezterm.toml",

]
owner = "The HyDE Project" #
Expand Down
32 changes: 32 additions & 0 deletions Scripts/dots/wezterm.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Configuration and wallbash template live in HyDE-Project/terminal-emulators,
# alongside the other terminals. This mirrors the dot declared there, consumed
# over the branch archive since the installer takes one git remote per run.
#
# The archive holds a single top-level directory, which the installer strips,
# so every path below is relative to the repository root.

[wezterm]
description = "A GPU-accelerated cross-platform terminal emulator and multiplexer"
source = "https://github.com/HyDE-Project/terminal-emulators/archive/refs/heads/main.zip"

[[wezterm.dependency]]
dnf = [ "wezterm" ]
pacman = [ "wezterm" ]

[[wezterm.files]]
action = "sync"
paths = "hyde.lua"
source_root = "wezterm"
target_root = "${XDG_CONFIG_HOME}/wezterm"

[[wezterm.files]]
action = "preserve"
paths = "wezterm.lua"
source_root = "wezterm"
target_root = "${XDG_CONFIG_HOME}/wezterm"

[[wezterm.files]]
action = "sync"
paths = "wezterm.dcol"
source_root = "wezterm"
target_root = "${XDG_DATA_HOME}/wallbash/theme"
Loading