Config File Collection
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

add_tmux 321B

123456789101112
  1. #!/bin/zsh
  2. #
  3. SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
  4. if [[ (-e ~/.tmux.conf) ]]; then
  5. echo "A tmux configuration already exists (~/.tmux.conf)"
  6. echo "Remove this configuration and start the script again"
  7. else
  8. echo "Creating link"
  9. ln -vs $SCRIPTPATH/.tmux.conf ~/.tmux.conf
  10. fi