mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-20 00:24:28 +01:00
10 lines
153 B
Bash
Executable File
10 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## launch mako with alt config
|
|
|
|
CONFIG="$HOME/.config/hypr/mako/config"
|
|
|
|
if [[ ! $(pidof mako) ]]; then
|
|
mako --config ${CONFIG}
|
|
fi
|