14 lines
317 B
Bash
14 lines
317 B
Bash
wx-start(){
|
|
wx-header "Warén CLI" h1
|
|
|
|
if [[ $USER != "root" && $USER != "local" ]]
|
|
then
|
|
mkdir -p $HOME/.config/warengroup &> /dev/null
|
|
|
|
if [[ ! -f "$HOME/.config/warengroup/config.json" ]]
|
|
then
|
|
echo '{}' | jq > $HOME/.config/warengroup/config.json
|
|
fi
|
|
fi
|
|
}
|