10 lines
196 B
Bash
10 lines
196 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Open the Voxtype configuration file
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Used by Voxtype waybar module to open config on right click
|
||
|
|
|
||
|
|
exec archypr-launch-editor ~/.config/voxtype/config.toml
|