8 lines
95 B
Bash
8 lines
95 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ $# -eq 0 ]; then
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
hyprctl dispatch exec "[float; center] $1"
|