1
0
Fork 0
 
 
 
 
 
 
Go to file
Ambrose Chua 9eeab81060
Switch to yabai, improve keymap and folders
2019-09-29 17:28:08 +08:00
.bar Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.config Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.gnupg Make pinentry work for Linux 2019-09-05 10:43:12 +08:00
.install Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.local/bin Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.ssh Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.wallpaper Switch to yabai, improve keymap and folders 2019-09-29 17:28:08 +08:00
.yadm Add gpg configuration 2019-01-16 14:08:15 +08:00
.Xresources Update sway and .Xresources 2018-11-01 00:16:29 +08:00
.brewfile Update brewfile and object storage location 2019-09-20 00:40:00 +08:00
.dockerfile Add compression and cleanup 2019-01-16 13:39:20 +08:00
.dockerignore More usage [SKIP CI] 2018-04-01 21:36:34 +08:00
.drone.yml Fix Go builds and extend clipboard-history 2019-02-06 00:10:39 +08:00
.hushlogin Hush iTerm2 login line 2019-08-12 11:55:57 +08:00
.versions Drop JDK version 2019-01-16 11:37:16 +08:00
.zshrc Do not automatically setup GPG pinentry tty 2019-09-20 00:57:17 +08:00
LICENSE Create LICENSE 2018-09-26 22:35:26 +08:00
README.md Add macOS Brewfile and jq 2019-01-16 11:27:00 +08:00

README.md

env Build Status

Just storing dotfiles in a repository isn't enough. This is almost all the tools I use, put into a Docker image that I can run anywhere

Todo

  • i3bar
  • macOS support?

Usage

Docker

export PATH="$HOME/.local/bin:$PATH"
curl -fLo ~/.local/bin/runenv https://raw.githubusercontent.com/serverwentdown/env/master/.local/bin/runenv
chmod +x ~/.local/bin/runenv
runenv -h

macOS

brew bundle --file=.brewfile
./.install/dircolors.sh
./.install/pure.sh
# thefuck is installed using homebrew
./.install/zsh-autosuggestions.sh
./.install/zsh-syntax-highlighting.sh
./.install/plug.sh
./.install/yadm.sh
# pass is installed using homebrew
./.install/packr.sh
./.install/caddy.sh
./.install/httpie.sh
# jq is installed using homebrew
# kubectl is installed using homebrew
# minio-client is installed using homebrew
./.install/yarn.sh
yadm clone git@github.com:serverwentdown/env.git

Optional

# requires private key
yadm decrypt
# requires yadm decrypt
git clone git@makerforce.io:ambrose/pass.git ~/.password-store
# takes up a lot of space
sudo ./.install/jdk.sh && sudo ./.install/gradlr.sh
# for desktop environments only
sudo ./.install/desktop.sh && sudo ./.install/firefox.sh

Maintenance

Keep .install synchronised with Dockerfile. Check with:

for f in .install/*; do grep $f .dockerfile -q || echo "Missing: $f"; done