This commit is contained in:
Yuri Zamyatin 2025-01-01 01:33:20 +00:00
parent b190c24860
commit a476ea0e65
2 changed files with 7 additions and 5 deletions

View File

@ -1,10 +1,7 @@
# Workspace # Workspace
My scripts and configuration. My scripts and configuration. See [blog post](https://yrz.am/posts/workspace/).
Built with multi-user and multi-machine setup in mind (assuming you are in charge).
- arch-root/ - administrative pc stuff related to hardware, packages, login management, group flow, roaming, etc. - arch-root/ - administrative pc stuff related to hardware, packages, login management, group flow, roaming, etc.
- arch-user/ - all the pc session stuff including window management that reflect my preferences as a user. Tiling wm, colemak, minimalism, vi bindings everywhere. - arch-user/ - all the pc session stuff including window management that reflect my preferences as a user. Tiling wm, colemak, minimalism, vi bindings everywhere.
- deb-vps/ - deb-vps/ - docker-based system. No applications yet.
- android/

View File

@ -2,6 +2,11 @@
set -e set -e
cd "$(dirname "$0")" cd "$(dirname "$0")"
umask 002 umask 002
[[ "$(id -u)" == "0" ]] && echo "ERROR: wrong user" >&1 && exit 1
####### file structure #########
mkdir -p ~/tmp ~/know ~/scripts ~/dev
################################
########## scripts ############# ########## scripts #############
cp -rf scripts/* ~/scripts cp -rf scripts/* ~/scripts