https://github.com/bryant1410/dotbot-apt
Dotbot APT plugin
https://github.com/bryant1410/dotbot-apt
apt apt-get dotbot dotbot-aptget dotbot-plugin dotfiles plugin
Last synced: 4 months ago
JSON representation
Dotbot APT plugin
- Host: GitHub
- URL: https://github.com/bryant1410/dotbot-apt
- Owner: bryant1410
- License: apache-2.0
- Created: 2020-05-02T05:23:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T18:38:37.000Z (about 2 years ago)
- Last Synced: 2024-10-29T15:14:57.253Z (6 months ago)
- Topics: apt, apt-get, dotbot, dotbot-aptget, dotbot-plugin, dotfiles, plugin
- Language: Python
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - bryant1410/dotbot-apt - Dotbot APT plugin (Python)
README
# Dotbot APT Plugin
Easily install APT packages with [dotbot](https://github.com/anishathalye/dotbot).
Inspired by [dotbot-apt-get](https://github.com/rubenvereecken/dotbot-apt-get).
## Usage
Python 3.5+ is needed.
It's easiest to track this plugin in your dotfiles repo:
```bash
git submodule add https://github.com/bryant1410/dotbot-apt
```I also recommend having your apt-get list in a separate file since dotbot will need root privileges to use the plugin.
Using the plugin will look something like this:```bash
sudo ./install -p dotbot-apt/apt.py -c packages.conf.yaml
```Example `packages.conf.yaml` file:
```yaml
- apt:
- jq
```