mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:26:31 +00:00
028d0a56a0
omf seems a bit janky at times. Giving fisherman a shot
9 lines
226 B
Bash
9 lines
226 B
Bash
#! /bin/bash
|
|
|
|
local omf_config="$XDG_CONFIG_HOME/omf"
|
|
try_link "$DEFAULT_ASSETS_PATH" "$omf_config"
|
|
|
|
if [ ! -d "$XDG_DATA_HOME/omf" ]; then
|
|
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
|
|
fi
|