mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-10 04:56:30 +00:00
11 lines
393 B
Bash
Executable File
11 lines
393 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Link and add source all synced fish configs
|
|
|
|
mkdir -p "$XDG_CONFIG_HOME/fish"
|
|
touch "$XDG_CONFIG_HOME/fish/config.fish"
|
|
|
|
try_link "$DEFAULT_ASSETS_PATH" "$XDG_CONFIG_HOME/fish/synced"
|
|
add_line "set -gx fish_synced_dir $XDG_CONFIG_HOME/fish/synced" "$XDG_CONFIG_HOME/fish/config.fish"
|
|
add_line "source $XDG_CONFIG_HOME/fish/synced/init.fish" "$XDG_CONFIG_HOME/fish/config.fish"
|