https://github.com/baileywickham/personal_packages
A dotfiles repo with scripts and docker testing
https://github.com/baileywickham/personal_packages
docker dotfiles shell
Last synced: 5 months ago
JSON representation
A dotfiles repo with scripts and docker testing
- Host: GitHub
- URL: https://github.com/baileywickham/personal_packages
- Owner: baileywickham
- Created: 2018-01-16T16:48:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-12-02T23:13:47.000Z (7 months ago)
- Last Synced: 2025-12-05T23:39:10.533Z (7 months ago)
- Topics: docker, dotfiles, shell
- Language: Shell
- Homepage:
- Size: 9.04 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal Packages

My dotfiles and install scripts

## Layout
- `bin/` scripts for my machine
- `config/` my dotfiles
- `files/` config files, keyboard layout, etc...
- `modules/` specific install scripts
- `scripts/` useful scripts for this repo
### Modules
To add an install script, add a `.sh` file to `modules/`. The `personal_packages.sh` script automaticly call the function matching the name of the file for all files in the `modules` directory. Ex: `install_zsh` in `modules/install_zsh.sh` will be automaticly called.
## Use
Run `./personal_packages.sh -h` to see the options available.
Commonly used bash utils are stored in the utils.sh file, they can be included in any repo with the following script.
```bash
if [ -f utils.sh ]; then
source utils.sh
else
curl -s https://raw.githubusercontent.com/baileywickham/personal_packages/master/utils.sh > utils.sh
source utils.sh
fi
```
### Running
There should be as few dependencies as possible to the actual script, bash and git are all you need
```bash
sudo apt install git
git clone https://github.com/baileywickham/personal_packages.git ~/workspace/personal_packages && \
cd ~/workspace/personal_packages && ./personal_packages.sh -a
```
To install the packages and move the dotfiles.
### Features
This installs my custom keyboard, bashrc, vimrc, tmux.conf, 2fa files and all packages I want.
## Docker
Use:
```bash
./dock.sh
```
This repo includes a dockerfile and a script, ```dock.sh``` which runs the dockerfile. I am using docker as a test enviroment for making changes to the os, without breaking my configs.
## One liners
`curl https://raw.githubusercontent.com/baileywickham/personal_packages/master/files/keyboard > /etc/default/keyboard`