Move installation scripts to install/ dir
This commit is contained in:
4
install/docker-ce.sh
Executable file
4
install/docker-ce.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x -e
|
||||
curl -fsSL https://get.docker.com -o get-docker.sh | sudo bash
|
||||
0
scripts/enhancd-install.sh → install/enhancd.sh
Normal file → Executable file
0
scripts/enhancd-install.sh → install/enhancd.sh
Normal file → Executable file
@@ -51,3 +51,13 @@ alias cs='. $LWS/bin/cs.sh'
|
||||
alias fp="fzf --preview '~/bin/bat {} --color=always'"
|
||||
|
||||
alias mp=multipass
|
||||
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../..'
|
||||
alias ....='cd ../../..'
|
||||
|
||||
# Spotifi HiDPI
|
||||
# alias spotify="/snap/bin/spotify --force-device-scale-factor=2"
|
||||
|
||||
# Zoom HiDPI
|
||||
# alias zoom='export QT_DEVICE_PIXEL_RATIO=2; /usr/bin/zoom'
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
# Spotifi HiDPI
|
||||
#alias spotify="/snap/bin/spotify --force-device-scale-factor=2"
|
||||
|
||||
# Zoom HiDPI
|
||||
alias zoom='export QT_DEVICE_PIXEL_RATIO=2; /usr/bin/zoom'
|
||||
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../..'
|
||||
alias ....='cd ../../..'
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
sudo snap install --classic kotlin
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# https://docs.docker.com/engine/install/ubuntu/
|
||||
|
||||
set -x
|
||||
set -e
|
||||
|
||||
sudo apt-get remove -y --ignore-missing docker docker.io containerd runc
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y 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
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose docker-compose-plugin
|
||||
Reference in New Issue
Block a user