9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f ~/.config/firstrun.state ]; then
|
|
dms ipc call settings open
|
|
dms ipc call keybinds openWithPath mangowc ~/.config/mango/binds.conf
|
|
touch ~/.config/firstrun.state
|
|
fi
|
|
exit 0
|