mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-24 09:47:29 -05:00
15 lines
176 B
Bash
Executable File
15 lines
176 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
cd ~
|
|
eww close dashboard
|
|
|
|
if [[ "$1" == "--web" ]]; then
|
|
app=$2
|
|
eval "${app%\%*}" &
|
|
else
|
|
app=$1
|
|
eval "${app%\%*}" &
|
|
pkill dashactivate
|
|
fi
|
|
|