13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
vivaldi --new-window &
|
|
|
|
sleep 0.3
|
|
|
|
# wait until Hyprland focuses the new window
|
|
while ! hyprctl activewindow | grep -q "Vivaldi"; do
|
|
sleep 0.05
|
|
done
|
|
|
|
hyprctl dispatch sendshortcut CTRL,F11,activewindow
|