Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/bin/bash | |
| #------------------------------------------------------------------------------- | |
| #Created by helmuthdu mailto: helmuthdu[at]gmail[dot]com | |
| #Inspired by Andreas Freitag, aka nexxx script | |
| #------------------------------------------------------------------------------- | |
| #This program is free software: you can redistribute it and/or modify | |
| #it under the terms of the GNU General Public License as published by | |
| #the Free Software Foundation, either version 3 of the License, or | |
| #(at your option) any later version. | |
| # |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| !9:: | |
| Send {U+201E} | |
| return | |
| !0:: | |
| Send {U+201C} | |
| return | |
| !-:: | |
| Send {U+2013} |
| # see more at: https://docs.docker.com/engine/install/ubuntu/ | |
| apt-get update | |
| apt-get install ca-certificates curl gnupg lsb-release | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg | |
| echo \ | |
| "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ | |
| $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
| apt-get update | |
| apt-get install docker-ce docker-ce-cli containerd.io | |
| # see more at: https://docs.docker.com/engine/install/linux-postinstall/ |
| if [[ ! -e $HOME/.dotfiles ]]; then | |
| # clone your dotfiles repository | |
| git clone --bare https://gitlab.com/zygimantus/dotfiles.git $HOME/.dotfiles | |
| # define the alias in the current shell scope | |
| alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' | |
| # checkout the actual content from the git repository to your $HOME | |
| dotfiles checkout | |
| fi |