From 89f285628611e2b2bc5747f618100ac763b4e7db Mon Sep 17 00:00:00 2001 From: Daniel Thoren Date: Mon, 28 Mar 2022 16:44:35 +0200 Subject: [PATCH] :memo: add install script to readme --- README.md | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ebc3e90..a5d441a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,36 @@ # dotfiles -how i like my dev machine + +* this is my install script +* i run it right after install artix-cinnamon-openrc +* it's very much a work in progress 🚧 + +```sh +#!/bin/sh +# 1. install artix-cinnamon-openRC then run +# 2. run through this script, section by section + + +# upgdate / upgrade +sudo pacman -Syy +sudo pacman -Syu + +# install basic shidd +sudo pacman -S --needed git base-devel + +# install AUR helper +git clone https://aur.archlinux.org/yay.git +cd yay +makepkg -si + +# install programs +yay -S librewolf-bin + +# install zsh and omz and more +# https://medium.com/tech-notes-and-geek-stuff/install-zsh-on-arch-linux-manjaro-and-make-it-your-default-shell-b0098b756a7a + + +# kill the beep sound +# this command needs to be saved into .bashrc or +# some startup script +sudo rmmod pcspkr +```