-
dash-to-panel(自己 build 的,應該要 fork 一份到 gh)
-
常用的東西
sudo apt install git curl htop tmux vim- telegram
sudo snap install telegram-desktop- spotify
sudo snap install spotify
- gnome tweaks
- 可以設定雙螢幕的 workspace
sudo apt install gnome-tweak-toolssh server
sudo apt install openssh-server
sudo systemctl enable ssh
# if firewall
sudo ufw allow ssh
# other command
sudo systemctl start ssh
sudo systemctl stop ssh
sudo systemctl restart ssh
sudo systemctl status sshkey gen
ssh-keygen -t ed25519 -C "kehanluu@gmail.com"
ssh-keygen -t rsa -C "kehanluu@gmail.com"sudo apt install zshInstall oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"Install p10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10kSet ~/.zshrc
ZSH_THEME="powerlevel10k/powerlevel10k"
https://github.com/Mayccoll/Gogh
bash -c "$(wget -qO- https://git.io/vQgMr)"![[Pasted image 20210812195924.png]]
Python dependencies
sudo apt-get update; sudo apt-get install make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-devhttps://github.com/pyenv/pyenv-installer
curl https://pyenv.run | bash~/.profile
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
# bash
eval "$(pyenv init --path)"~/.zshrc or ~/.bashrc
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"Install python version
pyenv install 3.8.5create virtualenv
pyenv virtualenv 3.8.5 lab
pyenv activate labInstall docker engine https://docs.docker.com/engine/install/ubuntu/ Install docker compose https://docs.docker.com/compose/install/ Post-installation: Non-root user https://docs.docker.com/engine/install/linux-postinstall/
https://www.zotero.org/support/installation Better Bibtex
- https://retorque.re/zotero-better-bibtex/installation/ Obsidian-citation
- https://github.com/hans/obsidian-citation-plugin
sudo adduser hank
sudo usermod -g docker hank