28 lines
776 B
Bash
28 lines
776 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
hyprctl dispatch togglespecialworkspace music
|
||
|
|
||
|
firefox --new-window https://youtube.com &
|
||
|
sleep 0.5
|
||
|
hyprctl dispatch togglefloating
|
||
|
hyprctl dispatch resizeactive exact 40% 45%
|
||
|
hyprctl dispatch movewindow u
|
||
|
hyprctl dispatch movewindow l
|
||
|
hyprctl dispatch moveactive 30 30
|
||
|
|
||
|
# For other client
|
||
|
# hyprctl dispatch resizeactive exact 40% 40%
|
||
|
# hyprctl dispatch togglegroup
|
||
|
# hyprctl dispatch movewindow d
|
||
|
# hyprctl dispatch movewindow l
|
||
|
# hyprctl dispatch moveactive -- 30 -30
|
||
|
|
||
|
foot ~/.config/hypr/scripts/music_setup_vis.sh &
|
||
|
sleep 0.5
|
||
|
hyprctl dispatch togglefloating
|
||
|
hyprctl dispatch resizeactive exact 40% 90%
|
||
|
hyprctl dispatch movewindow u
|
||
|
hyprctl dispatch movewindow r
|
||
|
hyprctl dispatch moveactive -- -80 10%
|
||
|
# hyprctl dispatch togglespecialworkspace music
|