diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-04-30 20:06:00 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-04-30 20:06:00 +0900 |
| commit | 49b51fa7b74a76a3e8a9803cd57b68627adc83ad (patch) | |
| tree | cd0f96f36a2706fa7a16dd6ffd1899d3045970ec /setup.sh | |
| parent | 6b428249eb25e1cdbca3284b4edc0e5629f2befe (diff) | |
| download | dotfiles-49b51fa7b74a76a3e8a9803cd57b68627adc83ad.tar.gz dotfiles-49b51fa7b74a76a3e8a9803cd57b68627adc83ad.tar.zst dotfiles-49b51fa7b74a76a3e8a9803cd57b68627adc83ad.zip | |
bin: add tmux-pane-idx
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -58,3 +58,18 @@ if [ ! -f ~/.config/skk/jisyo.L ]; then curl -fL -o "$_compressed_jisyo" https://skk-dev.github.io/dict/SKK-JISYO.L.unannotated.gz gunzip -cd "$_compressed_jisyo" > ~/.config/skk/jisyo.L fi + +if [ ! -d ~/bin ]; then + echo "dir: ~/bin" + mkdir ~/bin +fi + +for name in \ + tmux-pane-idx \ + ; \ +do + if [ ! -L ~/bin/"$name" ]; then + echo "symlink: ~/bin/$name" + ln -s -f ~/dotfiles/bin/"$name" ~/bin/"$name" + fi +done |
