Move installation scripts to install/ dir

This commit is contained in:
lachtan
2024-09-01 16:24:15 +02:00
parent 36b28ae72e
commit 420f85e31e
25 changed files with 14 additions and 30 deletions

4
install/docker-ce.sh Executable file
View 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
View File

View 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'

View File

@@ -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 ../../..'

View File

@@ -1,2 +0,0 @@
sudo snap install --classic kotlin

View File

@@ -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