- Relocate themes to assets/themes/ and update all references. - Implement custom SDDM theme and Plymouth theme enhancements. - Add themed templates for Alacritty, Hyprland, Waybar, and other apps. - Introduce Makima key remapper module and configuration. - Add Voxtype and Walker configurations. - Implement systemd power management and timeout optimizations. - Add Nautilus-python extensions for LocalSend. - Update branding assets and ASCII art integration.
21 lines
593 B
Plaintext
21 lines
593 B
Plaintext
# SSH Port Forwarding Functions
|
|
fip() {
|
|
(( $# < 2 )) && echo "Usage: fip <host> <port1> [port2] ..." && return 1
|
|
local host="$1"
|
|
shift
|
|
for port in "$@"; do
|
|
ssh -f -N -L "$port:localhost:$port" "$host" && echo "Forwarding localhost:$port -> $host:$port"
|
|
done
|
|
}
|
|
|
|
dip() {
|
|
(( $# == 0 )) && echo "Usage: dip <port1> [port2] ..." && return 1
|
|
for port in "$@"; do
|
|
pkill -f "ssh.*-L $port:localhost:$port" && echo "Stopped forwarding port $port" || echo "No forwarding on port $port"
|
|
done
|
|
}
|
|
|
|
lip() {
|
|
pgrep -af "ssh.*-L [0-9]+:localhost:[0-9]+" || echo "No active forwards"
|
|
}
|