Configure Hyprland to use the hy3 plugin for dynamic tiling similar to XMonad. Uses official Hyprland and hy3 flakes pinned to v0.53.0 for proper plugin compatibility (nixpkgs packaging had header issues). Key changes: - Add hyprland and hy3 flake inputs with version pinning - Rewrite hyprland.conf with hy3 layout and XMonad-like keybindings - Add helper scripts for window management (bring, replace, gather, etc.) - WASD directional navigation using hy3:movefocus/movewindow - Tab groups, horizontal/vertical splits via hy3:makegroup - Scratchpads via Hyprland special workspaces Also removes org-agenda-api flake integration (moved elsewhere). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
1.0 KiB
Bash
Executable File
34 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Replace focused window with selected window (like XMonad's myReplaceWindow)
|
|
# Swaps the positions of focused window and selected window
|
|
|
|
set -euo pipefail
|
|
|
|
# Get current workspace and focused window
|
|
CURRENT_WS=$(hyprctl activeworkspace -j | jq -r '.id')
|
|
FOCUSED=$(hyprctl activewindow -j | jq -r '.address')
|
|
|
|
if [ "$FOCUSED" = "null" ] || [ -z "$FOCUSED" ]; then
|
|
notify-send "Replace Window" "No focused window"
|
|
exit 0
|
|
fi
|
|
|
|
# Get all windows except focused
|
|
WINDOWS=$(hyprctl clients -j | jq -r ".[] | select(.workspace.id >= 0 and .address != \"$FOCUSED\") | \"\(.title) [\(.class)] - WS:\(.workspace.id) |\(.address)\"")
|
|
|
|
if [ -z "$WINDOWS" ]; then
|
|
notify-send "Replace Window" "No other windows available"
|
|
exit 0
|
|
fi
|
|
|
|
# Show rofi menu
|
|
SELECTION=$(echo "$WINDOWS" | rofi -dmenu -i -p "Replace with" -format 's')
|
|
|
|
if [ -n "$SELECTION" ]; then
|
|
# Extract the window address
|
|
ADDRESS=$(echo "$SELECTION" | sed 's/.*|//')
|
|
|
|
# Swap windows using hy3
|
|
hyprctl dispatch hy3:movewindow "address:$ADDRESS"
|
|
fi
|