clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update

sspaeti f75f39dd e54be56b

+46
+42
README.md
··· 71 71 I used MacOS 15+ years, Windows at work and now [Arch Linux with Omarchy](https://www.ssp.sh/blog/macbook-to-arch-linux-omarchy/). 72 72 73 73 I have all settings in one folder with stow, except Windows. It's in it's own folder under [Windows directory](windows) . 74 + 75 + ## Others 76 + 77 + ### Oh-my-zsh 78 + 79 + Check [latest](https://ohmyz.sh/#install): 80 + ```sh 81 + sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 82 + ``` 83 + 84 + 85 + ## Copy files over 86 + 87 + ### Allow ssh on old Linux computer 88 + 89 + ``` 90 + sudo systemctl enable --now sshd 91 + ``` 92 + 93 + ### Copy files over 94 + 95 + ``` 96 + rsync -avy --progress USER@IP:~/.ssh ~/ 97 + rsync -avy --progress USER@IP:~/.local/share/zoxide ~/.local/share/ 98 + rsync -avy --progress USER@IP:~/.local/share/kdenlive ~/.local/share/ 99 + rsync -avy --progress USER@IP:~/.local/bin ~/.local/ 100 + rsync -avy --progress USER@IP:~/Simon ~/ 101 + rsync -avy --progress USER@IP:~/git ~/ 102 + rsync -avy --progress USER@IP:~/Documents/ ~/Documents/ 103 + rsync -avy --progress USER@IP:~/Downloads/ ~/Downloads/ 104 + rsync -avy --progress USER@IP:~/Videos/ ~/Videos/ 105 + rsync -avy --progress USER@IP:~/Pictures/ ~/Pictures/ 106 + ``` 107 + 108 + 109 + ### Finalize 110 + 111 + Turn off ssh again: 112 + 113 + ``` 114 + sudo systemctl stop sshd 115 + ```
+4
zsh/.dotfiles/zsh/paths.shrc
··· 21 21 #poetry version: installed with `brew install asdf \n asdf plugin add poetry && asdf install poetry 1.2.2` 22 22 export PATH="~/.asdf/installs/poetry/1.2.2/bin:$PATH" 23 23 24 + 25 + # filen-cli 26 + PATH=$PATH:~/.filen-cli/bin 27 + 24 28 # my shortcuts 25 29 export git=~/git 26 30 export de=$git/de