]> git.r.bdr.sh - rbdr/dotfiles/commitdiff
Add linux compatibility fixes
authorRuben Beltran del Rio <redacted>
Mon, 28 Jun 2021 11:29:12 +0000 (13:29 +0200)
committerRuben Beltran del Rio <redacted>
Mon, 28 Jun 2021 11:29:12 +0000 (13:29 +0200)
install_dotfiles
runcoms/zshrc

index 60f9a71596f309601eda3068a46a955dcbb92d8b..d534bafef3bcdc5f5e421443243c03ca656aca5d 100755 (executable)
@@ -3,54 +3,54 @@
 echo "Linking runcoms"
 
 # hush login
 echo "Linking runcoms"
 
 # hush login
-ln -fhs .dotfiles/hushlogin ~/.hushlogin
+ln -fns .dotfiles/hushlogin ~/.hushlogin
 
 # zsh runcoms
 
 # zsh runcoms
-ln -fhs .dotfiles/runcoms/zshrc ~/.zshrc
-ln -fhs .dotfiles/runcoms/zshenv ~/.zshenv
-ln -fhs .dotfiles/runcoms/zprofile ~/.zprofile
-ln -fhs .dotfiles/runcoms/zlogout ~/.zlogout
-ln -fhs .dotfiles/runcoms/zlogin ~/.zlogin
+ln -fns .dotfiles/runcoms/zshrc ~/.zshrc
+ln -fns .dotfiles/runcoms/zshenv ~/.zshenv
+ln -fns .dotfiles/runcoms/zprofile ~/.zprofile
+ln -fns .dotfiles/runcoms/zlogout ~/.zlogout
+ln -fns .dotfiles/runcoms/zlogin ~/.zlogin
 
 # Weechat
 
 # Weechat
-ln -fhs .dotfiles/weechat ~/.weechat
+ln -fns .dotfiles/weechat ~/.weechat
 
 # VIM
 
 # VIM
-ln -fhs .dotfiles/vim ~/.vim
-ln -fhs .dotfiles/vimrc ~/.vimrc
+ln -fns .dotfiles/vim ~/.vim
+ln -fns .dotfiles/vimrc ~/.vimrc
 
 # TMUX
 
 # TMUX
-ln -fhs .dotfiles/tmux.conf ~/.tmux.conf
+ln -fns .dotfiles/tmux.conf ~/.tmux.conf
 
 # Nethack
 
 # Nethack
-ln -fhs .dotfiles/nethackrc ~/.nethackrc
+ln -fns .dotfiles/nethackrc ~/.nethackrc
 
 # Git
 
 # Git
-ln -fhs .dotfiles/gitconfig ~/.gitconfig
+ln -fns .dotfiles/gitconfig ~/.gitconfig
 
 # Ctags
 
 # Ctags
-ln -fhs .dotfiles/ctags.d ~/.ctags.d
+ln -fns .dotfiles/ctags.d ~/.ctags.d
 
 # XDefaults
 
 # XDefaults
-ln -fhs .dotfiles/XDefaults ~/.XDefaults
+ln -fns .dotfiles/XDefaults ~/.XDefaults
 
 # ripgrep
 
 # ripgrep
-ln -fhs .dotfiles/rgignore ~/.rgignore
+ln -fns .dotfiles/rgignore ~/.rgignore
 
 # tmuxp
 
 # tmuxp
-ln -fhs .dotfiles/tmuxp ~/.tmuxp
+ln -fns .dotfiles/tmuxp ~/.tmuxp
 
 # config dir
 mkdir -p ~/.config
 
 # kitty
 
 # config dir
 mkdir -p ~/.config
 
 # kitty
-ln -fhs ../.dotfiles/config/kitty ~/.config/kitty
+ln -fns ../.dotfiles/config/kitty ~/.config/kitty
 
 # nvim
 
 # nvim
-ln -fhs ../.dotfiles/config/nvim ~/.config/nvim
+ln -fns ../.dotfiles/config/nvim ~/.config/nvim
 
 # config
 
 # config
-ln -fhs ../.dotfiles/config/karabiner ~/.config/karabiner
+ln -fns ../.dotfiles/config/karabiner ~/.config/karabiner
 
 # Italics setup
 echo "Setting up terminfo"
 
 # Italics setup
 echo "Setting up terminfo"
index 9f53b8b898e6ffb4779ece352ac79e2763298b34..780b5264446548cb5099f05491901ca28612678c 100644 (file)
@@ -51,7 +51,7 @@ export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3"
 export GPG_TTY=$(tty)
 
 # FZF Config
 export GPG_TTY=$(tty)
 
 # FZF Config
-export FZF_DEFAULT_COMMAND='/usr/local/bin/rg --color never --files --hidden -g \!.git'
+export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git'
 export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500'''
 
 # Z
 export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500'''
 
 # Z
@@ -71,7 +71,13 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then
   source "${ZDOTDIR:-$HOME}/.zshrc.local"
 fi
 
   source "${ZDOTDIR:-$HOME}/.zshrc.local"
 fi
 
-eval $(/usr/libexec/path_helper -s)
+if command -v brew &>  /dev/null; then
+  eval $(/usr/libexec/path_helper -s)
+fi
 
 # ASDF
 
 # ASDF
-. $(brew --prefix asdf)/asdf.sh
+if ! command -v brew &>  /dev/null; then
+  . $HOME/.asdf/asdf.sh
+else
+  . $(brew --prefix asdf)/asdf.sh
+fi