mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-09-07 05:43:00 +02:00
9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
window_class="floating"
|
|
|
|
if [[ $(pidof nmtui) ]]; then
|
|
pkill nmtui
|
|
fi
|
|
|
|
exec alacritty --class $window_class -e nmtui
|