1
0
Go to file
Konstantin Demin 37de43b409
update
- repo uris
- installation instructions
2024-03-20 12:32:50 +03:00
LICENCE initial commit 2021-03-21 18:10:39 +03:00
README.md update 2024-03-20 12:32:50 +03:00

personal dotfiles

repo URLs

contents

  • zsh
  • gnu screen
  • git
  • vim (very naive)
  • gdb (ditto)

files are stored in separate branch (main)

installation

  • install dotfiles (select preferred variant):

    • with curl:

      • default URI:

        curl -sSL https://dotfiles.krd.sh/get | sh -s
        
      • explicit fallback to Github:

        curl -sSL https://github.com/rockdrilla/dotfiles/raw/main/.config/dotfiles/install.sh | sh -s
        
    • with wget:

      • default URI:

        wget -q -O - https://dotfiles.krd.sh/get | sh -s
        
      • explicit fallback to Github:

        wget -q -O - https://github.com/rockdrilla/dotfiles/raw/main/.config/dotfiles/install.sh | sh -s
        
    • with apt-helper (very last-resort):

      • default URI:

        /usr/lib/apt/apt-helper download-file https://dotfiles.krd.sh/get "${HOME}/dotfiles.install.sh"
        sh "${HOME}/dotfiles.install.sh" ; rm -f "${HOME}/dotfiles.install.sh"
        
      • explicit fallback to Github:

        /usr/lib/apt/apt-helper download-file https://github.com/rockdrilla/dotfiles/raw/main/.config/dotfiles/install.sh "${HOME}/dotfiles.install.sh"
        sh "${HOME}/dotfiles.install.sh" ; rm -f "${HOME}/dotfiles.install.sh"
        
  • switch shell to zsh:

    chsh -s /bin/zsh
    

license

BSD 3-Clause | spdx.org | opensource.org