9 lines
310 B
Bash
Executable File
9 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source the functions file
|
|
notify-send --app-name "GOXLR client" --icon "goxlr-utility" -u normal "Starting" "GoXLR inteface is starting"
|
|
|
|
sleep 10
|
|
goxlr-client profiles device load 'Default'
|
|
notify-send --app-name "GOXLR client" --icon "goxlr-utility" -u normal "Started" "GoXLR start complete"
|