mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
Merge pull request #209 from jessebot/feature/make-dot-files-config-dir-configurable
Feature - make dot files git config dir configurable
This commit is contained in:
commit
67a1ca9f09
11 changed files with 508 additions and 555 deletions
111
README.md
111
README.md
|
@ -66,7 +66,11 @@ If you haven't already made the switch from Vim to [NeoVim], you can try out Neo
|
|||
<details>
|
||||
<summary><h4>Easy <code>yaml</code> config files using XDG Base Directory Spec<h4></summary>
|
||||
|
||||
We use use [XDG Base Directory Spec] for [config files](#configuration) so you always know where they are :)
|
||||
We use use [XDG Base Directory Spec] for config files, so you always know where they are :)
|
||||
|
||||
Config files are in `$XDG_CONFIG_HOME/onboardme/`, <sub>or `~/.config/onboardme/` if `$XDG_CONFIG_HOME` is not defined</sub>.
|
||||
|
||||
Learn more about configuration in the [config docs](https://jessebot.github.io/onboardme/onboardme/getting-started).
|
||||
|
||||
</details>
|
||||
|
||||
|
@ -195,13 +199,15 @@ pip install --user --upgrade onboardme
|
|||
Read more about our docker tags and how to use them at [jessebot/onboardme](https://hub.docker.com/r/jessebot/onboardme) on DockerHub.
|
||||
|
||||
# Usage
|
||||
Learn more about configuration in the [config docs](https://jessebot.github.io/onboardme/onboardme/getting-started), but by default you can get started with:
|
||||
|
||||
_Now_ you can run `onboardme` 🎉
|
||||
```bash
|
||||
# this will display the help text for onboardme
|
||||
onboardme --help
|
||||
|
||||
# Running this won't overwrite any existing dot files, but it may add new ones.
|
||||
# Running this won't overwrite any existing dot files, but it may add new ones
|
||||
# and it may install new packages. Don't run this till you've looked at the files
|
||||
# in ~/.config/onboardme/
|
||||
onboardme
|
||||
```
|
||||
|
||||
|
@ -221,105 +227,6 @@ If you're on python 3.11, you should be able to do:
|
|||
pip3.11 install --upgrade onboardme
|
||||
```
|
||||
|
||||
### Configuration
|
||||
onboardme has lots of CLI options, but you can also use config files. You have to create these files for the time being.
|
||||
|
||||
Config files are in `$XDG_CONFIG_HOME/onboardme/`, <sub>or `~/.config/onboardme/` if `$XDG_CONFIG_HOME` is not defined</sub>.
|
||||
|
||||
| Config File | Description |
|
||||
|:------------------------------------------|:----------------------------------------------------|
|
||||
| `$XDG_CONFIG_HOME/onboardme/config.yml` | For step configuration to run either all steps, or just a subset. |
|
||||
| `$XDG_CONFIG_HOME/onboardme/packages.yml` | For adding packages with different package managers |
|
||||
|
||||
Examples:
|
||||
<details>
|
||||
<summary><code>~/.config/onboardme/config.yml</code></summary>
|
||||
|
||||
```yaml
|
||||
---
|
||||
# ______________________________________________________________ #
|
||||
# Config file for the onboardme cli command. #
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
|
||||
# - If this files exists as: ~/.config/onboardme/config.yaml #
|
||||
# then its loaded instead of the default config #
|
||||
# -------------------------------------------------------------- #
|
||||
|
||||
|
||||
log:
|
||||
# Full path to a file you'd like to log to. Creates file if it doesn't exist
|
||||
file: ""
|
||||
# what level of logs to output (debug, info, warn, error)
|
||||
level: "warn"
|
||||
|
||||
# steps refer to a specific function in the list of functions we run
|
||||
steps:
|
||||
# these are mac specific steps
|
||||
Darwin:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- sudo_setup
|
||||
# these are linux specific steps
|
||||
Linux:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- group_setup
|
||||
|
||||
dot_files:
|
||||
# personal git repo URL for your dot files, defaults to jessebot/dot_files
|
||||
git_url: "https://github.com/jessebot/dot_files.git"
|
||||
# the branch to use for the git repo above, defaults to main
|
||||
git_branch: "main"
|
||||
# !!CAREFUL: runs a `git reset --hard`, which will overwite/delete files in
|
||||
# $HOME that conflict with the above defined git repo url and branch.
|
||||
# You should run the following to get the files that would be overwritten:
|
||||
# onboardme -s dot_files
|
||||
# if set to true, then using onboardme -O will toggle it back to false
|
||||
overwrite: false
|
||||
|
||||
# This is the basic package config.
|
||||
package:
|
||||
# Remove any of the below pkg managers to only run the remaining pkg managers
|
||||
managers:
|
||||
# macOS specific steps
|
||||
Darwin:
|
||||
- brew
|
||||
- pip3.11
|
||||
# Debian/Ubuntu specific steps
|
||||
Linux:
|
||||
- apt
|
||||
- brew
|
||||
- pip3.11
|
||||
- flatpak
|
||||
- snap
|
||||
# list of extra existing packages groups to install
|
||||
groups:
|
||||
default:
|
||||
# basic tui stuff to have a nice time in the terminal :)
|
||||
- default
|
||||
# move these package.groups.default to always install them
|
||||
optional:
|
||||
# setting up more python data science specific tooling
|
||||
- data_science
|
||||
# kubernetes and docker tools
|
||||
- devops
|
||||
# gaming always installs gui
|
||||
- gaming
|
||||
# freetube and other gui applications
|
||||
- gui
|
||||
# this configures neomutt and offlineimap
|
||||
- mail
|
||||
# sets up useful music tui stuff for spotify and youtube
|
||||
- music
|
||||
# things like zoom and slack
|
||||
- work
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
## Under the Hood
|
||||
Made and tested for these operating systems:
|
||||
|
||||
|
|
253
docs/onboardme/configuration.md
Normal file
253
docs/onboardme/configuration.md
Normal file
|
@ -0,0 +1,253 @@
|
|||
---
|
||||
layout: default
|
||||
title: Getting Started
|
||||
parent: getting-started
|
||||
permalink: /onboardme/config
|
||||
---
|
||||
|
||||
## Configuration
|
||||
|
||||
### CLI
|
||||
|
||||
For the full help, you can check out the `--help` option. If anything there is
|
||||
unclear, please feel free to open up [an issue](https://github.com/onboardme/issues)
|
||||
and we can clear it up for you and make the help text, more helpful :)
|
||||
|
||||
```bash
|
||||
onboardme --help
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>Full Help Text</summary>
|
||||
|
||||
[<img src='https://raw.githubusercontent.com/jessebot/onboardme/main/docs/onboardme/screenshots/help_text.svg' alt='screenshot of full output of onboardme --help'>](https://raw.githubusercontent.com/jessebot/onboardme/main/docs/onboardme/screenshots/help_text.svg)
|
||||
|
||||
</details>
|
||||
|
||||
### Config files
|
||||
|
||||
`onboardme` uses a `config.yml` in its installation directory that has defaults.
|
||||
Those defaults can be altered per machine by creating a config file like:
|
||||
|
||||
<details>
|
||||
<summary><code>~/.config/onboardme/config.yml</code></summary>
|
||||
|
||||
```yaml
|
||||
---
|
||||
# ______________________________________________________________ #
|
||||
# Config file for the onboardme cli command. #
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
|
||||
# - If this files exists as: ~/.config/onboardme/config.yaml #
|
||||
# then its loaded instead of the default config #
|
||||
# -------------------------------------------------------------- #
|
||||
|
||||
|
||||
log:
|
||||
# Full path to a file you'd like to log to. Creates file if it doesn't exist
|
||||
file: ""
|
||||
# what level of logs to output (debug, info, warn, error)
|
||||
level: "warn"
|
||||
|
||||
# steps refer to a specific function in the list of functions we run
|
||||
steps:
|
||||
# these are mac specific steps
|
||||
Darwin:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- sudo_setup
|
||||
# these are linux specific steps
|
||||
Linux:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- group_setup
|
||||
|
||||
dot_files:
|
||||
# personal git repo URL for your dot files, defaults to jessebot/dot_files
|
||||
git_url: "https://github.com/jessebot/dot_files.git"
|
||||
# the branch to use for the git repo above, defaults to main
|
||||
git_branch: "main"
|
||||
# this is where the actual git config for your dot files lives
|
||||
# it can't live in ~/.git because that will affect _everything_ under ~/
|
||||
git_config_dir: "~/.config/dot_files"
|
||||
# !!CAREFUL: runs a `git reset --hard`, which will overwite/delete files in
|
||||
# $HOME that conflict with the above defined git repo url and branch.
|
||||
# You should run the following to get the files that would be overwritten:
|
||||
# onboardme -s dot_files
|
||||
# if set to true, then using onboardme -O will toggle it back to false
|
||||
overwrite: false
|
||||
|
||||
# This is the basic package config.
|
||||
package:
|
||||
# Remove any of the below pkg managers to only run the remaining pkg managers
|
||||
managers:
|
||||
# macOS specific steps
|
||||
Darwin:
|
||||
- brew
|
||||
- pip3.11
|
||||
# Debian/Ubuntu specific steps
|
||||
Linux:
|
||||
- apt
|
||||
- brew
|
||||
- pip3.11
|
||||
- flatpak
|
||||
- snap
|
||||
# list of extra existing packages groups to install
|
||||
groups:
|
||||
default:
|
||||
# basic tui stuff to have a nice time in the terminal :)
|
||||
- default
|
||||
# move these package.groups.default to always install them
|
||||
optional:
|
||||
# setting up more python data science specific tooling
|
||||
- data_science
|
||||
# kubernetes and docker tools
|
||||
- devops
|
||||
# gaming always installs gui
|
||||
- gaming
|
||||
# freetube and other gui applications
|
||||
- gui
|
||||
# this configures neomutt and offlineimap
|
||||
- mail
|
||||
# sets up useful music tui stuff for spotify and youtube
|
||||
- music
|
||||
# things like zoom and slack
|
||||
- work
|
||||
```
|
||||
|
||||
If the comments in this configuration file are unclear, please feel free to
|
||||
open up [an issue](https://github.com/onboardme/issues) and we'll help! :)
|
||||
|
||||
</details>
|
||||
|
||||
We also use a package file called
|
||||
[`packages.yml`](https://github.com/jessebot/dot_files/blob/main/.config/onboardme/packages.yml)
|
||||
which you can also place in your `~/.config/onboardme` directory, to take
|
||||
precedence over our defaults.
|
||||
|
||||
## Config Sections and Explanations
|
||||
### Steps
|
||||
Steps refer to a specific function in the list of functions we run and can be
|
||||
configured for both macOS and Linux seperately. These steps include:
|
||||
|
||||
- setting up dot files in your home directory (.bashrc, etc)
|
||||
- managing packages using package managers (brew, pip3.11, apt, snap, flatpak)
|
||||
- installing fonts
|
||||
- setting up basic TUI IDE, neovim
|
||||
- setting up groups
|
||||
|
||||
They can be configured via the `steps` parameter in the `config.yml` above,
|
||||
or via the the cli like:
|
||||
|
||||
```bash
|
||||
# this runs only the dot_file management step
|
||||
onboardme -s dot_files
|
||||
```
|
||||
|
||||
or for multiple steps:
|
||||
|
||||
```bash
|
||||
# this runs both the dot_file management step and the neovim setup step
|
||||
onboardme -s dot_files -s neovim_setup
|
||||
```
|
||||
|
||||
If you try to run a step that requires another step, we will automatically run
|
||||
that step so for instance, to set up neovim, we need dot files. e.g.
|
||||
|
||||
This command: `onboardme -s neovim_setup`
|
||||
|
||||
In the background becomes: `onboardme -s dot_files -s neovim_setup`
|
||||
|
||||
### dot files
|
||||
The dot files for your home directory are installed from a git URL and branch
|
||||
that you can configure either via the config file, or the cli. If your local
|
||||
files conflict with the files in the repo, we will not overwrite them by default.
|
||||
If you always want your local dot files overwritten, you can pass in the `-O` switch
|
||||
or `--overwrite` option or set `overwrite` in your local `~/.config/onboardme/config.yml`.
|
||||
|
||||
### `onboardme` cli
|
||||
```bash
|
||||
# run onboardme with a custom git url and branch that overwrites existing files
|
||||
# and use the ~/.config/dot_files dir for storing the git config for the dot files
|
||||
onboardme --git_url https://github.com/jessebot/dot_files.git \
|
||||
--git_branch main \
|
||||
--git_config_dir ~/.config/dot_files \
|
||||
--overwrite
|
||||
```
|
||||
|
||||
### `config.yml`
|
||||
|
||||
```yaml
|
||||
dot_files:
|
||||
git_url: "https://github.com/jessebot/dot_files.git"
|
||||
git_branch: "main"
|
||||
overwrite: true
|
||||
```
|
||||
|
||||
|
||||
### Package Management
|
||||
All of the packages are installed using package managers, and each package
|
||||
manager has groups of packages they can install. You can specify specific
|
||||
package _managers_ and package _groups_ via the `config.yml` file, or via the cli.
|
||||
|
||||
By default, we install the `default` package _groups_ for all package _managers_.
|
||||
This includes everything you need for a basic cli experience and a slim ide.
|
||||
|
||||
The default package managers for macOS and Linux are: `brew` and `pip3.11`
|
||||
|
||||
For Linux, we also include: `apt`, `snap`, and `flatpak`
|
||||
|
||||
See the examples below:
|
||||
|
||||
#### Install the "default" and "gui" package groups
|
||||
This would install the default packages for the basic cli experience and a
|
||||
slim ide PLUS GUI tools, like vlc and freetube.
|
||||
|
||||
##### `onboardme` cli
|
||||
|
||||
```bash
|
||||
# can also be: onboardme -g default -g gui
|
||||
onboardme --pkg_groups default --pkg_groups gui
|
||||
```
|
||||
|
||||
##### `config.yml`
|
||||
|
||||
```yaml
|
||||
package:
|
||||
groups:
|
||||
default:
|
||||
- default
|
||||
- gui
|
||||
```
|
||||
|
||||
#### _Only_ install the "devops" package group for _only_ the `brew` package manager
|
||||
This will install only additional tooling for devops work.
|
||||
_Note: This will not install/upgrade the default package group._
|
||||
|
||||
##### `onboardme` cli
|
||||
|
||||
```bash
|
||||
# can also be: onboardme -p brew -g devops
|
||||
onboardme --pkg_managers brew --pkg_groups devops
|
||||
```
|
||||
|
||||
##### `config.yml`
|
||||
|
||||
```yaml
|
||||
package:
|
||||
managers:
|
||||
Darwin:
|
||||
- brew
|
||||
Linux:
|
||||
- brew
|
||||
groups:
|
||||
default:
|
||||
- devops
|
||||
# none of the packages below will be run be default, but can specified via the cli
|
||||
optional:
|
||||
- gui
|
||||
- work
|
||||
```
|
|
@ -8,247 +8,13 @@ permalink: /onboardme/getting-started
|
|||
|
||||
# Quick Start
|
||||
|
||||
If you haven't already, please refer to the
|
||||
[install instructions](https://jessebot.github.io/onboardme/onboardme/getting-started/installation) 🌱.
|
||||
If you haven't already, please refer to the 🌱
|
||||
[install instructions](https://jessebot.github.io/onboardme/onboardme/getting-started/installation) and ⚙️ [Configuration](https://jessebot.github.io/onboardme/onboardme/config).
|
||||
|
||||
You can run `onboardme` with no options or further configuration, and it will
|
||||
not overwrite anything, but it will install packages and attempt to configure
|
||||
fonts, neovim, and give you further instructions to setup your machine on your own.
|
||||
|
||||
See below for configuration with cli options or a config file :)
|
||||
|
||||
## Configuration
|
||||
|
||||
### CLI
|
||||
|
||||
For the full help, you can check out the `--help` option. If anything there is
|
||||
unclear, please feel free to open up [an issue](https://github.com/onboardme/issues)
|
||||
and we can clear it up for you and make the help text, more helpful :)
|
||||
|
||||
```bash
|
||||
onboardme --help
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>Full Help Text</summary>
|
||||
|
||||
[<img src='https://raw.githubusercontent.com/jessebot/onboardme/main/docs/onboardme/screenshots/help_text.svg' alt='screenshot of full output of onboardme --help'>](https://raw.githubusercontent.com/jessebot/onboardme/main/docs/onboardme/screenshots/help_text.svg)
|
||||
|
||||
</details>
|
||||
|
||||
### Config files
|
||||
|
||||
`onboardme` uses a `config.yml` in its installation directory that has defaults.
|
||||
Those defaults can be altered per machine by creating a config file like:
|
||||
|
||||
<details>
|
||||
<summary><code>~/.config/onboardme/config.yml</code></summary>
|
||||
|
||||
```yaml
|
||||
---
|
||||
# ______________________________________________________________ #
|
||||
# Config file for the onboardme cli command. #
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
|
||||
# - If this files exists as: ~/.config/onboardme/config.yaml #
|
||||
# then its loaded instead of the default config #
|
||||
# -------------------------------------------------------------- #
|
||||
|
||||
|
||||
log:
|
||||
# Full path to a file you'd like to log to. Creates file if it doesn't exist
|
||||
file: ""
|
||||
# what level of logs to output (debug, info, warn, error)
|
||||
level: "warn"
|
||||
|
||||
# steps refer to a specific function in the list of functions we run
|
||||
steps:
|
||||
# these are mac specific steps
|
||||
Darwin:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- sudo_setup
|
||||
# these are linux specific steps
|
||||
Linux:
|
||||
- dot_files
|
||||
- packages
|
||||
- font_setup
|
||||
- neovim_setup
|
||||
- group_setup
|
||||
|
||||
dot_files:
|
||||
# personal git repo URL for your dot files, defaults to jessebot/dot_files
|
||||
git_url: "https://github.com/jessebot/dot_files.git"
|
||||
# the branch to use for the git repo above, defaults to main
|
||||
git_branch: "main"
|
||||
# !!CAREFUL: runs a `git reset --hard`, which will overwite/delete files in
|
||||
# $HOME that conflict with the above defined git repo url and branch.
|
||||
# You should run the following to get the files that would be overwritten:
|
||||
# onboardme -s dot_files
|
||||
# if set to true, then using onboardme -O will toggle it back to false
|
||||
overwrite: false
|
||||
|
||||
# This is the basic package config.
|
||||
package:
|
||||
# Remove any of the below pkg managers to only run the remaining pkg managers
|
||||
managers:
|
||||
# macOS specific steps
|
||||
Darwin:
|
||||
- brew
|
||||
- pip3.11
|
||||
# Debian/Ubuntu specific steps
|
||||
Linux:
|
||||
- apt
|
||||
- brew
|
||||
- pip3.11
|
||||
- flatpak
|
||||
- snap
|
||||
# list of extra existing packages groups to install
|
||||
groups:
|
||||
default:
|
||||
# basic tui stuff to have a nice time in the terminal :)
|
||||
- default
|
||||
# move these package.groups.default to always install them
|
||||
optional:
|
||||
# setting up more python data science specific tooling
|
||||
- data_science
|
||||
# kubernetes and docker tools
|
||||
- devops
|
||||
# gaming always installs gui
|
||||
- gaming
|
||||
# freetube and other gui applications
|
||||
- gui
|
||||
# this configures neomutt and offlineimap
|
||||
- mail
|
||||
# sets up useful music tui stuff for spotify and youtube
|
||||
- music
|
||||
# things like zoom and slack
|
||||
- work
|
||||
```
|
||||
|
||||
If the comments in this configuration file are unclear, please feel free to
|
||||
open up [an issue](https://github.com/onboardme/issues) and we'll help! :)
|
||||
|
||||
</details>
|
||||
|
||||
We also use a package file called
|
||||
[`packages.yml`](https://github.com/jessebot/dot_files/blob/main/.config/onboardme/packages.yml)
|
||||
which you can also place in your `~/.config/onboardme` directory, to take
|
||||
precedence over our defaults.
|
||||
|
||||
## Config Sections and Explanations
|
||||
### Steps
|
||||
Steps refer to a specific function in the list of functions we run and can be
|
||||
configured for both macOS and Linux seperately. These steps include:
|
||||
|
||||
- setting up dot files in your home directory (.bashrc, etc)
|
||||
- managing packages using package managers (brew, pip3.11, apt, snap, flatpak)
|
||||
- installing fonts
|
||||
- setting up basic TUI IDE, neovim
|
||||
- setting up groups
|
||||
|
||||
They can be configured via the `steps` parameter in the `config.yml` above,
|
||||
or via the the cli like:
|
||||
|
||||
```bash
|
||||
# this runs only the dot_file management step
|
||||
onboardme -s dot_files
|
||||
```
|
||||
|
||||
or for multiple steps:
|
||||
|
||||
```bash
|
||||
# this runs both the dot_file management step and the neovim setup step
|
||||
onboardme -s dot_files -s neovim_setup
|
||||
```
|
||||
|
||||
If you try to run a step that requires another step, we will automatically run
|
||||
that step so for instance, to set up neovim, we need dot files. e.g.
|
||||
|
||||
This command: `onboardme -s neovim_setup`
|
||||
|
||||
In the background becomes: `onboardme -s dot_files -s neovim_setup`
|
||||
|
||||
### dot files
|
||||
The dot files for your home directory are installed from a git URL and branch
|
||||
that you can configure either via the config file, or the cli. If your local
|
||||
files conflict with the files in the repo, we will not overwrite them by default.
|
||||
If you always want your local dot files overwritten, you can pass in the `-O` switch
|
||||
or `--overwrite` option or set `overwrite` in your local `~/.config/onboardme/config.yml`.
|
||||
|
||||
### `onboardme` cli
|
||||
```bash
|
||||
# run onboardme with a custom git url and branch that overwrites existing files
|
||||
onboardme --git_url https://github.com/jessebot/dot_files.git --git_branch main --overwrite
|
||||
```
|
||||
|
||||
### `config.yml`
|
||||
|
||||
```yaml
|
||||
dot_files:
|
||||
git_url: "https://github.com/jessebot/dot_files.git"
|
||||
git_branch: "main"
|
||||
overwrite: true
|
||||
```
|
||||
|
||||
|
||||
### Package Management
|
||||
All of the packages are installed using package managers, and each package
|
||||
manager has groups of packages they can install. You can specify specific
|
||||
package _managers_ and package _groups_ via the `config.yml` file, or via the cli.
|
||||
|
||||
By default, we install the `default` package _groups_ for all package _managers_.
|
||||
This includes everything you need for a basic cli experience and a slim ide.
|
||||
|
||||
The default package managers for macOS and Linux are: `brew` and `pip3.11`
|
||||
|
||||
For Linux, we also include: `apt`, `snap`, and `flatpak`
|
||||
|
||||
See the examples below:
|
||||
|
||||
#### Install the "default" and "gui" package groups
|
||||
This would install the default packages for the basic cli experience and a
|
||||
slim ide PLUS GUI tools, like vlc and freetube.
|
||||
|
||||
##### `onboardme` cli
|
||||
|
||||
```bash
|
||||
# can also be: onboardme -g default -g gui
|
||||
onboardme --pkg_groups default --pkg_groups gui
|
||||
```
|
||||
|
||||
##### `config.yml`
|
||||
|
||||
```yaml
|
||||
package:
|
||||
groups:
|
||||
default:
|
||||
- default
|
||||
- gui
|
||||
```
|
||||
|
||||
#### _Only_ install the "devops" package group for _only_ the `brew` package manager
|
||||
This will install only additional tooling for devops work.
|
||||
_Note: This will not install/upgrade the default package group._
|
||||
|
||||
##### `onboardme` cli
|
||||
|
||||
```bash
|
||||
# can also be: onboardme -p brew -g devops
|
||||
onboardme --pkg_managers brew --pkg_groups devops
|
||||
```
|
||||
|
||||
##### `config.yml`
|
||||
|
||||
```yaml
|
||||
package:
|
||||
managers:
|
||||
Darwin:
|
||||
- brew
|
||||
Linux:
|
||||
- brew
|
||||
groups:
|
||||
default:
|
||||
- devops
|
||||
onboardme
|
||||
```
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<svg class="rich-terminal" viewBox="0 0 1055 1270.0" xmlns="http://www.w3.org/2000/svg">
|
||||
<svg class="rich-terminal" viewBox="0 0 1360 1074.8" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Generated with Rich https://www.textualize.io -->
|
||||
<style>
|
||||
|
||||
|
@ -19,250 +19,217 @@
|
|||
font-weight: 700;
|
||||
}
|
||||
|
||||
.terminal-3952770330-matrix {
|
||||
.terminal-4070237589-matrix {
|
||||
font-family: Fira Code, monospace;
|
||||
font-size: 20px;
|
||||
line-height: 24.4px;
|
||||
font-variant-east-asian: full-width;
|
||||
}
|
||||
|
||||
.terminal-3952770330-title {
|
||||
.terminal-4070237589-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.terminal-3952770330-r1 { fill: #c5c8c6 }
|
||||
.terminal-3952770330-r2 { fill: #5f87ff }
|
||||
.terminal-3952770330-r3 { fill: #5f87ff;font-style: italic; }
|
||||
.terminal-3952770330-r4 { fill: #5f87af }
|
||||
.terminal-3952770330-r5 { fill: #5f87af;font-weight: bold }
|
||||
.terminal-3952770330-r6 { fill: #5f87af;font-style: italic; }
|
||||
.terminal-3952770330-r7 { fill: #c5c8c6;font-weight: bold }
|
||||
.terminal-3952770330-r8 { fill: #5f5fff }
|
||||
.terminal-3952770330-r9 { fill: #7979a9 }
|
||||
.terminal-3952770330-r10 { fill: #00afff }
|
||||
.terminal-3952770330-r11 { fill: #afafff }
|
||||
.terminal-3952770330-r12 { fill: #868887 }
|
||||
.terminal-3952770330-r13 { fill: #1079a9 }
|
||||
.terminal-3952770330-r14 { fill: #4961a9 }
|
||||
.terminal-3952770330-r15 { fill: #868887;font-weight: bold }
|
||||
.terminal-3952770330-r16 { fill: #c5c8c6;font-style: italic; }
|
||||
.terminal-4070237589-r1 { fill: #c5c8c6 }
|
||||
.terminal-4070237589-r2 { fill: #5f87ff }
|
||||
.terminal-4070237589-r3 { fill: #5f87ff;font-style: italic; }
|
||||
.terminal-4070237589-r4 { fill: #5f87af }
|
||||
.terminal-4070237589-r5 { fill: #5f87af;font-weight: bold }
|
||||
.terminal-4070237589-r6 { fill: #5f87af;font-style: italic; }
|
||||
.terminal-4070237589-r7 { fill: #c5c8c6;font-weight: bold }
|
||||
.terminal-4070237589-r8 { fill: #5f5fff }
|
||||
.terminal-4070237589-r9 { fill: #7979a9 }
|
||||
.terminal-4070237589-r10 { fill: #00afff }
|
||||
.terminal-4070237589-r11 { fill: #afafff }
|
||||
.terminal-4070237589-r12 { fill: #868887 }
|
||||
.terminal-4070237589-r13 { fill: #1079a9 }
|
||||
.terminal-4070237589-r14 { fill: #4961a9 }
|
||||
.terminal-4070237589-r15 { fill: #868887;font-style: italic; }
|
||||
</style>
|
||||
|
||||
<defs>
|
||||
<clipPath id="terminal-3952770330-clip-terminal">
|
||||
<rect x="0" y="0" width="1036.0" height="1219.0" />
|
||||
<clipPath id="terminal-4070237589-clip-terminal">
|
||||
<rect x="0" y="0" width="1341.0" height="1023.8" />
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-0">
|
||||
<rect x="0" y="1.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-0">
|
||||
<rect x="0" y="1.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-1">
|
||||
<rect x="0" y="25.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-1">
|
||||
<rect x="0" y="25.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-2">
|
||||
<rect x="0" y="50.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-2">
|
||||
<rect x="0" y="50.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-3">
|
||||
<rect x="0" y="74.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-3">
|
||||
<rect x="0" y="74.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-4">
|
||||
<rect x="0" y="99.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-4">
|
||||
<rect x="0" y="99.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-5">
|
||||
<rect x="0" y="123.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-5">
|
||||
<rect x="0" y="123.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-6">
|
||||
<rect x="0" y="147.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-6">
|
||||
<rect x="0" y="147.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-7">
|
||||
<rect x="0" y="172.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-7">
|
||||
<rect x="0" y="172.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-8">
|
||||
<rect x="0" y="196.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-8">
|
||||
<rect x="0" y="196.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-9">
|
||||
<rect x="0" y="221.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-9">
|
||||
<rect x="0" y="221.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-10">
|
||||
<rect x="0" y="245.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-10">
|
||||
<rect x="0" y="245.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-11">
|
||||
<rect x="0" y="269.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-11">
|
||||
<rect x="0" y="269.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-12">
|
||||
<rect x="0" y="294.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-12">
|
||||
<rect x="0" y="294.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-13">
|
||||
<rect x="0" y="318.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-13">
|
||||
<rect x="0" y="318.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-14">
|
||||
<rect x="0" y="343.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-14">
|
||||
<rect x="0" y="343.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-15">
|
||||
<rect x="0" y="367.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-15">
|
||||
<rect x="0" y="367.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-16">
|
||||
<rect x="0" y="391.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-16">
|
||||
<rect x="0" y="391.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-17">
|
||||
<rect x="0" y="416.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-17">
|
||||
<rect x="0" y="416.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-18">
|
||||
<rect x="0" y="440.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-18">
|
||||
<rect x="0" y="440.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-19">
|
||||
<rect x="0" y="465.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-19">
|
||||
<rect x="0" y="465.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-20">
|
||||
<rect x="0" y="489.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-20">
|
||||
<rect x="0" y="489.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-21">
|
||||
<rect x="0" y="513.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-21">
|
||||
<rect x="0" y="513.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-22">
|
||||
<rect x="0" y="538.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-22">
|
||||
<rect x="0" y="538.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-23">
|
||||
<rect x="0" y="562.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-23">
|
||||
<rect x="0" y="562.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-24">
|
||||
<rect x="0" y="587.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-24">
|
||||
<rect x="0" y="587.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-25">
|
||||
<rect x="0" y="611.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-25">
|
||||
<rect x="0" y="611.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-26">
|
||||
<rect x="0" y="635.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-26">
|
||||
<rect x="0" y="635.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-27">
|
||||
<rect x="0" y="660.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-27">
|
||||
<rect x="0" y="660.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-28">
|
||||
<rect x="0" y="684.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-28">
|
||||
<rect x="0" y="684.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-29">
|
||||
<rect x="0" y="709.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-29">
|
||||
<rect x="0" y="709.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-30">
|
||||
<rect x="0" y="733.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-30">
|
||||
<rect x="0" y="733.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-31">
|
||||
<rect x="0" y="757.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-31">
|
||||
<rect x="0" y="757.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-32">
|
||||
<rect x="0" y="782.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-32">
|
||||
<rect x="0" y="782.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-33">
|
||||
<rect x="0" y="806.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-33">
|
||||
<rect x="0" y="806.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-34">
|
||||
<rect x="0" y="831.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-34">
|
||||
<rect x="0" y="831.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-35">
|
||||
<rect x="0" y="855.5" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-35">
|
||||
<rect x="0" y="855.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-36">
|
||||
<rect x="0" y="879.9" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-36">
|
||||
<rect x="0" y="879.9" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-37">
|
||||
<rect x="0" y="904.3" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-37">
|
||||
<rect x="0" y="904.3" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-38">
|
||||
<rect x="0" y="928.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-38">
|
||||
<rect x="0" y="928.7" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-39">
|
||||
<rect x="0" y="953.1" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-39">
|
||||
<rect x="0" y="953.1" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-40">
|
||||
<rect x="0" y="977.5" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-41">
|
||||
<rect x="0" y="1001.9" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-42">
|
||||
<rect x="0" y="1026.3" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-43">
|
||||
<rect x="0" y="1050.7" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-44">
|
||||
<rect x="0" y="1075.1" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-45">
|
||||
<rect x="0" y="1099.5" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-46">
|
||||
<rect x="0" y="1123.9" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-47">
|
||||
<rect x="0" y="1148.3" width="1037" height="24.65"/>
|
||||
</clipPath>
|
||||
<clipPath id="terminal-3952770330-line-48">
|
||||
<rect x="0" y="1172.7" width="1037" height="24.65"/>
|
||||
<clipPath id="terminal-4070237589-line-40">
|
||||
<rect x="0" y="977.5" width="1342" height="24.65"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1053" height="1268" rx="8"/><text class="terminal-3952770330-title" fill="#c5c8c6" text-anchor="middle" x="526" y="27">term</text>
|
||||
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1358" height="1072.8" rx="8"/><text class="terminal-4070237589-title" fill="#c5c8c6" text-anchor="middle" x="679" y="27">term</text>
|
||||
<g transform="translate(26,22)">
|
||||
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
|
||||
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
|
||||
<circle cx="44" cy="0" r="7" fill="#28c840"/>
|
||||
</g>
|
||||
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-3952770330-clip-terminal)">
|
||||
<g transform="translate(9, 41)" clip-path="url(#terminal-4070237589-clip-terminal)">
|
||||
|
||||
<g class="terminal-3952770330-matrix">
|
||||
<text class="terminal-3952770330-r1" x="0" y="20" textLength="475.8" clip-path="url(#terminal-3952770330-line-0)">                                   ☁️  </text><text class="terminal-3952770330-r2" x="463.6" y="20" textLength="85.4" clip-path="url(#terminal-3952770330-line-0)">OnBoard</text><text class="terminal-3952770330-r3" x="549" y="20" textLength="24.4" clip-path="url(#terminal-3952770330-line-0)">Me</text><text class="terminal-3952770330-r2" x="573.4" y="20" textLength="24.4" clip-path="url(#terminal-3952770330-line-0)"> 💻</text><text class="terminal-3952770330-r1" x="1037" y="20" textLength="12.2" clip-path="url(#terminal-3952770330-line-0)">
|
||||
</text><text class="terminal-3952770330-r4" x="12.2" y="44.4" textLength="646.6" clip-path="url(#terminal-3952770330-line-1)">Get your daily driver just the way you like it, from </text><text class="terminal-3952770330-r5" x="658.8" y="44.4" textLength="48.8" clip-path="url(#terminal-3952770330-line-1)">text</text><text class="terminal-3952770330-r6" x="719.8" y="44.4" textLength="122" clip-path="url(#terminal-3952770330-line-1)">formatting</text><text class="terminal-3952770330-r4" x="841.8" y="44.4" textLength="183" clip-path="url(#terminal-3952770330-line-1)">, and dot files</text><text class="terminal-3952770330-r1" x="1037" y="44.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-1)">
|
||||
</text><text class="terminal-3952770330-r4" x="61" y="68.8" textLength="915" clip-path="url(#terminal-3952770330-line-2)">to opensource package installation, onboardme intends to save you time with</text><text class="terminal-3952770330-r1" x="1037" y="68.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-2)">
|
||||
</text><text class="terminal-3952770330-r4" x="256.2" y="93.2" textLength="524.6" clip-path="url(#terminal-3952770330-line-3)">initializing or upgrading your environment.</text><text class="terminal-3952770330-r1" x="1037" y="93.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-3)">
|
||||
</text><text class="terminal-3952770330-r1" x="1037" y="117.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-4)">
|
||||
</text><text class="terminal-3952770330-r7" x="0" y="142" textLength="61" clip-path="url(#terminal-3952770330-line-5)">Usage</text><text class="terminal-3952770330-r1" x="61" y="142" textLength="36.6" clip-path="url(#terminal-3952770330-line-5)">:  </text><text class="terminal-3952770330-r8" x="97.6" y="142" textLength="109.8" clip-path="url(#terminal-3952770330-line-5)">onboardme</text><text class="terminal-3952770330-r2" x="219.6" y="142" textLength="109.8" clip-path="url(#terminal-3952770330-line-5)">[OPTIONS]</text><text class="terminal-3952770330-r1" x="1037" y="142" textLength="12.2" clip-path="url(#terminal-3952770330-line-5)">
|
||||
</text><text class="terminal-3952770330-r1" x="1037" y="166.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-6)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="190.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-7)">╭─</text><text class="terminal-3952770330-r9" x="24.4" y="190.8" textLength="146.4" clip-path="url(#terminal-3952770330-line-7)"> ⌥  Options </text><text class="terminal-3952770330-r9" x="170.8" y="190.8" textLength="841.8" clip-path="url(#terminal-3952770330-line-7)">─────────────────────────────────────────────────────────────────────</text><text class="terminal-3952770330-r9" x="1012.6" y="190.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-7)">─╮</text><text class="terminal-3952770330-r1" x="1037" y="190.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-7)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-8)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="215.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-8)">│</text><text class="terminal-3952770330-r1" x="1037" y="215.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-8)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-9)">│</text><text class="terminal-3952770330-r10" x="24.4" y="239.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-9)">-l</text><text class="terminal-3952770330-r2" x="61" y="239.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-9)">-</text><text class="terminal-3952770330-r2" x="73.2" y="239.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-9)">-l</text><text class="terminal-3952770330-r2" x="97.6" y="239.6" textLength="97.6" clip-path="url(#terminal-3952770330-line-9)">og_level</text><text class="terminal-3952770330-r11" x="195.2" y="239.6" textLength="109.8" clip-path="url(#terminal-3952770330-line-9)"> LOGLEVEL</text><text class="terminal-3952770330-r1" x="390.4" y="239.6" textLength="292.8" clip-path="url(#terminal-3952770330-line-9)">Logging level. Choices: </text><text class="terminal-3952770330-r11" x="683.2" y="239.6" textLength="61" clip-path="url(#terminal-3952770330-line-9)">debug</text><text class="terminal-3952770330-r1" x="744.2" y="239.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-9)">, </text><text class="terminal-3952770330-r11" x="768.6" y="239.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-9)">info</text><text class="terminal-3952770330-r1" x="817.4" y="239.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-9)">, </text><text class="terminal-3952770330-r11" x="841.8" y="239.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-9)">warn</text><text class="terminal-3952770330-r1" x="890.6" y="239.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-9)">, </text><text class="terminal-3952770330-r11" x="915" y="239.6" textLength="61" clip-path="url(#terminal-3952770330-line-9)">error</text><text class="terminal-3952770330-r9" x="1024.8" y="239.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-9)">│</text><text class="terminal-3952770330-r1" x="1037" y="239.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-9)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3952770330-line-10)">│</text><text class="terminal-3952770330-r1" x="390.4" y="264" textLength="109.8" clip-path="url(#terminal-3952770330-line-10)">Default: </text><text class="terminal-3952770330-r11" x="500.2" y="264" textLength="48.8" clip-path="url(#terminal-3952770330-line-10)">warn</text><text class="terminal-3952770330-r9" x="1024.8" y="264" textLength="12.2" clip-path="url(#terminal-3952770330-line-10)">│</text><text class="terminal-3952770330-r1" x="1037" y="264" textLength="12.2" clip-path="url(#terminal-3952770330-line-10)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-11)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="288.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-11)">│</text><text class="terminal-3952770330-r1" x="1037" y="288.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-11)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-12)">│</text><text class="terminal-3952770330-r13" x="24.4" y="312.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-12)">-o</text><text class="terminal-3952770330-r14" x="61" y="312.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-12)">-</text><text class="terminal-3952770330-r14" x="73.2" y="312.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-12)">-l</text><text class="terminal-3952770330-r14" x="97.6" y="312.8" textLength="85.4" clip-path="url(#terminal-3952770330-line-12)">og_file</text><text class="terminal-3952770330-r9" x="183" y="312.8" textLength="97.6" clip-path="url(#terminal-3952770330-line-12)"> LOGFILE</text><text class="terminal-3952770330-r12" x="390.4" y="312.8" textLength="610" clip-path="url(#terminal-3952770330-line-12)">Full path to file to log to, if set.              </text><text class="terminal-3952770330-r9" x="1024.8" y="312.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-12)">│</text><text class="terminal-3952770330-r1" x="1037" y="312.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-12)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-13)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="337.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-13)">│</text><text class="terminal-3952770330-r1" x="1037" y="337.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-13)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-14)">│</text><text class="terminal-3952770330-r10" x="24.4" y="361.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-14)">-s</text><text class="terminal-3952770330-r2" x="61" y="361.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-14)">-</text><text class="terminal-3952770330-r2" x="73.2" y="361.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-14)">-s</text><text class="terminal-3952770330-r2" x="97.6" y="361.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-14)">teps</text><text class="terminal-3952770330-r11" x="146.4" y="361.6" textLength="61" clip-path="url(#terminal-3952770330-line-14)"> STEP</text><text class="terminal-3952770330-r7" x="390.4" y="361.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-14)">Only</text><text class="terminal-3952770330-r1" x="439.2" y="361.6" textLength="61" clip-path="url(#terminal-3952770330-line-14)"> run </text><text class="terminal-3952770330-r11" x="500.2" y="361.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-14)">STEP</text><text class="terminal-3952770330-r1" x="549" y="361.6" textLength="451.4" clip-path="url(#terminal-3952770330-line-14)"> in the script.                      </text><text class="terminal-3952770330-r9" x="1024.8" y="361.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-14)">│</text><text class="terminal-3952770330-r1" x="1037" y="361.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-14)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3952770330-line-15)">│</text><text class="terminal-3952770330-r1" x="390.4" y="386" textLength="109.8" clip-path="url(#terminal-3952770330-line-15)">Choices: </text><text class="terminal-3952770330-r11" x="500.2" y="386" textLength="109.8" clip-path="url(#terminal-3952770330-line-15)">dot_files</text><text class="terminal-3952770330-r1" x="610" y="386" textLength="24.4" clip-path="url(#terminal-3952770330-line-15)">, </text><text class="terminal-3952770330-r11" x="634.4" y="386" textLength="97.6" clip-path="url(#terminal-3952770330-line-15)">packages</text><text class="terminal-3952770330-r1" x="732" y="386" textLength="24.4" clip-path="url(#terminal-3952770330-line-15)">, </text><text class="terminal-3952770330-r11" x="756.4" y="386" textLength="122" clip-path="url(#terminal-3952770330-line-15)">font_setup</text><text class="terminal-3952770330-r1" x="878.4" y="386" textLength="122" clip-path="url(#terminal-3952770330-line-15)">,         </text><text class="terminal-3952770330-r9" x="1024.8" y="386" textLength="12.2" clip-path="url(#terminal-3952770330-line-15)">│</text><text class="terminal-3952770330-r1" x="1037" y="386" textLength="12.2" clip-path="url(#terminal-3952770330-line-15)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-16)">│</text><text class="terminal-3952770330-r11" x="390.4" y="410.4" textLength="146.4" clip-path="url(#terminal-3952770330-line-16)">neovim_setup</text><text class="terminal-3952770330-r1" x="536.8" y="410.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-16)">, </text><text class="terminal-3952770330-r11" x="561.2" y="410.4" textLength="134.2" clip-path="url(#terminal-3952770330-line-16)">group_setup</text><text class="terminal-3952770330-r9" x="1024.8" y="410.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-16)">│</text><text class="terminal-3952770330-r1" x="1037" y="410.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-16)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-17)">│</text><text class="terminal-3952770330-r1" x="390.4" y="434.8" textLength="109.8" clip-path="url(#terminal-3952770330-line-17)">Example: </text><text class="terminal-3952770330-r10" x="500.2" y="434.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-17)">-s</text><text class="terminal-3952770330-r11" x="536.8" y="434.8" textLength="109.8" clip-path="url(#terminal-3952770330-line-17)">dot_files</text><text class="terminal-3952770330-r10" x="658.8" y="434.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-17)">-s</text><text class="terminal-3952770330-r11" x="695.4" y="434.8" textLength="97.6" clip-path="url(#terminal-3952770330-line-17)">packages</text><text class="terminal-3952770330-r9" x="1024.8" y="434.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-17)">│</text><text class="terminal-3952770330-r1" x="1037" y="434.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-17)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-18)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="459.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-18)">│</text><text class="terminal-3952770330-r1" x="1037" y="459.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-18)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-19)">│</text><text class="terminal-3952770330-r13" x="24.4" y="483.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-19)">-u</text><text class="terminal-3952770330-r14" x="61" y="483.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-19)">-</text><text class="terminal-3952770330-r14" x="73.2" y="483.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-19)">-g</text><text class="terminal-3952770330-r14" x="97.6" y="483.6" textLength="73.2" clip-path="url(#terminal-3952770330-line-19)">it_url</text><text class="terminal-3952770330-r9" x="170.8" y="483.6" textLength="48.8" clip-path="url(#terminal-3952770330-line-19)"> URL</text><text class="terminal-3952770330-r12" x="390.4" y="483.6" textLength="610" clip-path="url(#terminal-3952770330-line-19)">A git repo URL for your dot files. Default:       </text><text class="terminal-3952770330-r9" x="1024.8" y="483.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-19)">│</text><text class="terminal-3952770330-r1" x="1037" y="483.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-19)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3952770330-line-20)">│</text><text class="terminal-3952770330-r9" x="390.4" y="508" textLength="451.4" clip-path="url(#terminal-3952770330-line-20)">https://github.com/jessebot/dot_files</text><text class="terminal-3952770330-r9" x="1024.8" y="508" textLength="12.2" clip-path="url(#terminal-3952770330-line-20)">│</text><text class="terminal-3952770330-r1" x="1037" y="508" textLength="12.2" clip-path="url(#terminal-3952770330-line-20)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-21)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="532.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-21)">│</text><text class="terminal-3952770330-r1" x="1037" y="532.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-21)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-22)">│</text><text class="terminal-3952770330-r10" x="24.4" y="556.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-22)">-b</text><text class="terminal-3952770330-r2" x="61" y="556.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-22)">-</text><text class="terminal-3952770330-r2" x="73.2" y="556.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-22)">-g</text><text class="terminal-3952770330-r2" x="97.6" y="556.8" textLength="109.8" clip-path="url(#terminal-3952770330-line-22)">it_branch</text><text class="terminal-3952770330-r11" x="207.4" y="556.8" textLength="85.4" clip-path="url(#terminal-3952770330-line-22)"> BRANCH</text><text class="terminal-3952770330-r1" x="390.4" y="556.8" textLength="610" clip-path="url(#terminal-3952770330-line-22)">Branch to use for the git repo url. Default: main </text><text class="terminal-3952770330-r9" x="1024.8" y="556.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-22)">│</text><text class="terminal-3952770330-r1" x="1037" y="556.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-22)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-23)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="581.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-23)">│</text><text class="terminal-3952770330-r1" x="1037" y="581.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-23)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-24)">│</text><text class="terminal-3952770330-r13" x="24.4" y="605.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-24)">-O</text><text class="terminal-3952770330-r14" x="61" y="605.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-24)">-</text><text class="terminal-3952770330-r14" x="73.2" y="605.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-24)">-o</text><text class="terminal-3952770330-r14" x="97.6" y="605.6" textLength="97.6" clip-path="url(#terminal-3952770330-line-24)">verwrite</text><text class="terminal-3952770330-r15" x="390.4" y="605.6" textLength="122" clip-path="url(#terminal-3952770330-line-24)">Overwrites</text><text class="terminal-3952770330-r12" x="512.4" y="605.6" textLength="488" clip-path="url(#terminal-3952770330-line-24)"> existing dot files with files from     </text><text class="terminal-3952770330-r9" x="1024.8" y="605.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-24)">│</text><text class="terminal-3952770330-r1" x="1037" y="605.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-24)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3952770330-line-25)">│</text><text class="terminal-3952770330-r12" x="390.4" y="630" textLength="134.2" clip-path="url(#terminal-3952770330-line-25)">configured </text><text class="terminal-3952770330-r14" x="524.6" y="630" textLength="12.2" clip-path="url(#terminal-3952770330-line-25)">-</text><text class="terminal-3952770330-r14" x="536.8" y="630" textLength="24.4" clip-path="url(#terminal-3952770330-line-25)">-g</text><text class="terminal-3952770330-r14" x="561.2" y="630" textLength="73.2" clip-path="url(#terminal-3952770330-line-25)">it_url</text><text class="terminal-3952770330-r12" x="634.4" y="630" textLength="366" clip-path="url(#terminal-3952770330-line-25)"> repo. If you've set          </text><text class="terminal-3952770330-r9" x="1024.8" y="630" textLength="12.2" clip-path="url(#terminal-3952770330-line-25)">│</text><text class="terminal-3952770330-r1" x="1037" y="630" textLength="12.2" clip-path="url(#terminal-3952770330-line-25)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-26)">│</text><text class="terminal-3952770330-r12" x="390.4" y="654.4" textLength="451.4" clip-path="url(#terminal-3952770330-line-26)">overwrite: true in your config, then </text><text class="terminal-3952770330-r14" x="841.8" y="654.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-26)">-</text><text class="terminal-3952770330-r14" x="854" y="654.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-26)">-o</text><text class="terminal-3952770330-r14" x="878.4" y="654.4" textLength="97.6" clip-path="url(#terminal-3952770330-line-26)">verwrite</text><text class="terminal-3952770330-r9" x="1024.8" y="654.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-26)">│</text><text class="terminal-3952770330-r1" x="1037" y="654.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-26)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-27)">│</text><text class="terminal-3952770330-r12" x="390.4" y="678.8" textLength="610" clip-path="url(#terminal-3952770330-line-27)">on the command line will act as a toggle, so it   </text><text class="terminal-3952770330-r9" x="1024.8" y="678.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-27)">│</text><text class="terminal-3952770330-r1" x="1037" y="678.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-27)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-28)">│</text><text class="terminal-3952770330-r12" x="390.4" y="703.2" textLength="610" clip-path="url(#terminal-3952770330-line-28)">will NOT overwrite your dot files.                </text><text class="terminal-3952770330-r9" x="1024.8" y="703.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-28)">│</text><text class="terminal-3952770330-r1" x="1037" y="703.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-28)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-29)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="727.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-29)">│</text><text class="terminal-3952770330-r1" x="1037" y="727.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-29)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="752" textLength="12.2" clip-path="url(#terminal-3952770330-line-30)">│</text><text class="terminal-3952770330-r10" x="24.4" y="752" textLength="24.4" clip-path="url(#terminal-3952770330-line-30)">-p</text><text class="terminal-3952770330-r2" x="61" y="752" textLength="12.2" clip-path="url(#terminal-3952770330-line-30)">-</text><text class="terminal-3952770330-r2" x="73.2" y="752" textLength="24.4" clip-path="url(#terminal-3952770330-line-30)">-p</text><text class="terminal-3952770330-r2" x="97.6" y="752" textLength="134.2" clip-path="url(#terminal-3952770330-line-30)">kg_managers</text><text class="terminal-3952770330-r11" x="231.8" y="752" textLength="146.4" clip-path="url(#terminal-3952770330-line-30)"> PKG_MANAGER</text><text class="terminal-3952770330-r1" x="390.4" y="752" textLength="109.8" clip-path="url(#terminal-3952770330-line-30)">Specific </text><text class="terminal-3952770330-r11" x="500.2" y="752" textLength="134.2" clip-path="url(#terminal-3952770330-line-30)">PKG_MANAGER</text><text class="terminal-3952770330-r1" x="634.4" y="752" textLength="219.6" clip-path="url(#terminal-3952770330-line-30)"> to run. Choices: </text><text class="terminal-3952770330-r11" x="854" y="752" textLength="48.8" clip-path="url(#terminal-3952770330-line-30)">brew</text><text class="terminal-3952770330-r1" x="902.8" y="752" textLength="97.6" clip-path="url(#terminal-3952770330-line-30)">,       </text><text class="terminal-3952770330-r9" x="1024.8" y="752" textLength="12.2" clip-path="url(#terminal-3952770330-line-30)">│</text><text class="terminal-3952770330-r1" x="1037" y="752" textLength="12.2" clip-path="url(#terminal-3952770330-line-30)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-31)">│</text><text class="terminal-3952770330-r11" x="390.4" y="776.4" textLength="85.4" clip-path="url(#terminal-3952770330-line-31)">pip3.11</text><text class="terminal-3952770330-r1" x="475.8" y="776.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-31)">, </text><text class="terminal-3952770330-r11" x="500.2" y="776.4" textLength="36.6" clip-path="url(#terminal-3952770330-line-31)">apt</text><text class="terminal-3952770330-r1" x="536.8" y="776.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-31)">, </text><text class="terminal-3952770330-r11" x="561.2" y="776.4" textLength="48.8" clip-path="url(#terminal-3952770330-line-31)">snap</text><text class="terminal-3952770330-r1" x="610" y="776.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-31)">, </text><text class="terminal-3952770330-r11" x="634.4" y="776.4" textLength="85.4" clip-path="url(#terminal-3952770330-line-31)">flatpak</text><text class="terminal-3952770330-r9" x="1024.8" y="776.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-31)">│</text><text class="terminal-3952770330-r1" x="1037" y="776.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-31)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-32)">│</text><text class="terminal-3952770330-r1" x="390.4" y="800.8" textLength="109.8" clip-path="url(#terminal-3952770330-line-32)">Example: </text><text class="terminal-3952770330-r10" x="500.2" y="800.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-32)">-p</text><text class="terminal-3952770330-r11" x="536.8" y="800.8" textLength="48.8" clip-path="url(#terminal-3952770330-line-32)">brew</text><text class="terminal-3952770330-r10" x="597.8" y="800.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-32)">-p</text><text class="terminal-3952770330-r11" x="634.4" y="800.8" textLength="85.4" clip-path="url(#terminal-3952770330-line-32)">pip3.11</text><text class="terminal-3952770330-r9" x="1024.8" y="800.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-32)">│</text><text class="terminal-3952770330-r1" x="1037" y="800.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-32)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-33)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="825.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-33)">│</text><text class="terminal-3952770330-r1" x="1037" y="825.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-33)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-34)">│</text><text class="terminal-3952770330-r13" x="24.4" y="849.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-34)">-g</text><text class="terminal-3952770330-r14" x="61" y="849.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-34)">-</text><text class="terminal-3952770330-r14" x="73.2" y="849.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-34)">-p</text><text class="terminal-3952770330-r14" x="97.6" y="849.6" textLength="109.8" clip-path="url(#terminal-3952770330-line-34)">kg_groups</text><text class="terminal-3952770330-r9" x="207.4" y="849.6" textLength="122" clip-path="url(#terminal-3952770330-line-34)"> PKG_GROUP</text><text class="terminal-3952770330-r12" x="390.4" y="849.6" textLength="610" clip-path="url(#terminal-3952770330-line-34)">Package groups to install.                        </text><text class="terminal-3952770330-r9" x="1024.8" y="849.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-34)">│</text><text class="terminal-3952770330-r1" x="1037" y="849.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-34)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="874" textLength="12.2" clip-path="url(#terminal-3952770330-line-35)">│</text><text class="terminal-3952770330-r12" x="390.4" y="874" textLength="109.8" clip-path="url(#terminal-3952770330-line-35)">Choices: </text><text class="terminal-3952770330-r9" x="500.2" y="874" textLength="85.4" clip-path="url(#terminal-3952770330-line-35)">default</text><text class="terminal-3952770330-r12" x="585.6" y="874" textLength="24.4" clip-path="url(#terminal-3952770330-line-35)">, </text><text class="terminal-3952770330-r9" x="610" y="874" textLength="146.4" clip-path="url(#terminal-3952770330-line-35)">data_science</text><text class="terminal-3952770330-r12" x="756.4" y="874" textLength="24.4" clip-path="url(#terminal-3952770330-line-35)">, </text><text class="terminal-3952770330-r9" x="780.8" y="874" textLength="73.2" clip-path="url(#terminal-3952770330-line-35)">devops</text><text class="terminal-3952770330-r12" x="854" y="874" textLength="24.4" clip-path="url(#terminal-3952770330-line-35)">, </text><text class="terminal-3952770330-r9" x="878.4" y="874" textLength="73.2" clip-path="url(#terminal-3952770330-line-35)">gaming</text><text class="terminal-3952770330-r12" x="951.6" y="874" textLength="48.8" clip-path="url(#terminal-3952770330-line-35)">,   </text><text class="terminal-3952770330-r9" x="1024.8" y="874" textLength="12.2" clip-path="url(#terminal-3952770330-line-35)">│</text><text class="terminal-3952770330-r1" x="1037" y="874" textLength="12.2" clip-path="url(#terminal-3952770330-line-35)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-36)">│</text><text class="terminal-3952770330-r9" x="390.4" y="898.4" textLength="36.6" clip-path="url(#terminal-3952770330-line-36)">gui</text><text class="terminal-3952770330-r12" x="427" y="898.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-36)">, </text><text class="terminal-3952770330-r9" x="451.4" y="898.4" textLength="48.8" clip-path="url(#terminal-3952770330-line-36)">mail</text><text class="terminal-3952770330-r12" x="500.2" y="898.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-36)">, </text><text class="terminal-3952770330-r9" x="524.6" y="898.4" textLength="61" clip-path="url(#terminal-3952770330-line-36)">music</text><text class="terminal-3952770330-r12" x="585.6" y="898.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-36)">, </text><text class="terminal-3952770330-r9" x="610" y="898.4" textLength="48.8" clip-path="url(#terminal-3952770330-line-36)">work</text><text class="terminal-3952770330-r9" x="1024.8" y="898.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-36)">│</text><text class="terminal-3952770330-r1" x="1037" y="898.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-36)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-37)">│</text><text class="terminal-3952770330-r12" x="390.4" y="922.8" textLength="109.8" clip-path="url(#terminal-3952770330-line-37)">Example: </text><text class="terminal-3952770330-r13" x="500.2" y="922.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-37)">-g</text><text class="terminal-3952770330-r9" x="536.8" y="922.8" textLength="73.2" clip-path="url(#terminal-3952770330-line-37)">devops</text><text class="terminal-3952770330-r13" x="622.2" y="922.8" textLength="24.4" clip-path="url(#terminal-3952770330-line-37)">-g</text><text class="terminal-3952770330-r9" x="658.8" y="922.8" textLength="73.2" clip-path="url(#terminal-3952770330-line-37)">gaming</text><text class="terminal-3952770330-r9" x="1024.8" y="922.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-37)">│</text><text class="terminal-3952770330-r1" x="1037" y="922.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-37)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-38)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="947.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-38)">│</text><text class="terminal-3952770330-r1" x="1037" y="947.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-38)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-39)">│</text><text class="terminal-3952770330-r10" x="24.4" y="971.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-39)">-f</text><text class="terminal-3952770330-r2" x="61" y="971.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-39)">-</text><text class="terminal-3952770330-r2" x="73.2" y="971.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-39)">-f</text><text class="terminal-3952770330-r2" x="97.6" y="971.6" textLength="85.4" clip-path="url(#terminal-3952770330-line-39)">irewall</text><text class="terminal-3952770330-r1" x="390.4" y="971.6" textLength="231.8" clip-path="url(#terminal-3952770330-line-39)">Setup iptables (on </text><text class="terminal-3952770330-r16" x="622.2" y="971.6" textLength="61" clip-path="url(#terminal-3952770330-line-39)">linux</text><text class="terminal-3952770330-r1" x="683.2" y="971.6" textLength="317.2" clip-path="url(#terminal-3952770330-line-39)"> only).                   </text><text class="terminal-3952770330-r9" x="1024.8" y="971.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-39)">│</text><text class="terminal-3952770330-r1" x="1037" y="971.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-39)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="996" textLength="12.2" clip-path="url(#terminal-3952770330-line-40)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="996" textLength="12.2" clip-path="url(#terminal-3952770330-line-40)">│</text><text class="terminal-3952770330-r1" x="1037" y="996" textLength="12.2" clip-path="url(#terminal-3952770330-line-40)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-41)">│</text><text class="terminal-3952770330-r13" x="24.4" y="1020.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-41)">-r</text><text class="terminal-3952770330-r14" x="61" y="1020.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-41)">-</text><text class="terminal-3952770330-r14" x="73.2" y="1020.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-41)">-r</text><text class="terminal-3952770330-r14" x="97.6" y="1020.4" textLength="122" clip-path="url(#terminal-3952770330-line-41)">emote_host</text><text class="terminal-3952770330-r9" x="219.6" y="1020.4" textLength="97.6" clip-path="url(#terminal-3952770330-line-41)"> IP_ADDR</text><text class="terminal-3952770330-r12" x="390.4" y="1020.4" textLength="402.6" clip-path="url(#terminal-3952770330-line-41)">Setup SSH on a random port & add </text><text class="terminal-3952770330-r9" x="793" y="1020.4" textLength="85.4" clip-path="url(#terminal-3952770330-line-41)">IP_ADDR</text><text class="terminal-3952770330-r12" x="878.4" y="1020.4" textLength="122" clip-path="url(#terminal-3952770330-line-41)"> to       </text><text class="terminal-3952770330-r9" x="1024.8" y="1020.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-41)">│</text><text class="terminal-3952770330-r1" x="1037" y="1020.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-41)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-42)">│</text><text class="terminal-3952770330-r12" x="390.4" y="1044.8" textLength="610" clip-path="url(#terminal-3952770330-line-42)">firewall                                          </text><text class="terminal-3952770330-r9" x="1024.8" y="1044.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-42)">│</text><text class="terminal-3952770330-r1" x="1037" y="1044.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-42)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-43)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="1069.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-43)">│</text><text class="terminal-3952770330-r1" x="1037" y="1069.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-43)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-44)">│</text><text class="terminal-3952770330-r10" x="24.4" y="1093.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-44)">-n</text><text class="terminal-3952770330-r2" x="61" y="1093.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-44)">-</text><text class="terminal-3952770330-r2" x="73.2" y="1093.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-44)">-n</text><text class="terminal-3952770330-r2" x="97.6" y="1093.6" textLength="109.8" clip-path="url(#terminal-3952770330-line-44)">o_upgrade</text><text class="terminal-3952770330-r1" x="390.4" y="1093.6" textLength="610" clip-path="url(#terminal-3952770330-line-44)">Do not upgrade the existing brew or apt packages. </text><text class="terminal-3952770330-r9" x="1024.8" y="1093.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-44)">│</text><text class="terminal-3952770330-r1" x="1037" y="1093.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-44)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-3952770330-line-45)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="1118" textLength="12.2" clip-path="url(#terminal-3952770330-line-45)">│</text><text class="terminal-3952770330-r1" x="1037" y="1118" textLength="12.2" clip-path="url(#terminal-3952770330-line-45)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-46)">│</text><text class="terminal-3952770330-r14" x="61" y="1142.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-46)">-</text><text class="terminal-3952770330-r14" x="73.2" y="1142.4" textLength="24.4" clip-path="url(#terminal-3952770330-line-46)">-v</text><text class="terminal-3952770330-r14" x="97.6" y="1142.4" textLength="73.2" clip-path="url(#terminal-3952770330-line-46)">ersion</text><text class="terminal-3952770330-r12" x="390.4" y="1142.4" textLength="610" clip-path="url(#terminal-3952770330-line-46)">Print the version of onboardme (1.4.1)            </text><text class="terminal-3952770330-r9" x="1024.8" y="1142.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-46)">│</text><text class="terminal-3952770330-r1" x="1037" y="1142.4" textLength="12.2" clip-path="url(#terminal-3952770330-line-46)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-47)">│</text><text class="terminal-3952770330-r9" x="1024.8" y="1166.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-47)">│</text><text class="terminal-3952770330-r1" x="1037" y="1166.8" textLength="12.2" clip-path="url(#terminal-3952770330-line-47)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-48)">│</text><text class="terminal-3952770330-r2" x="61" y="1191.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-48)">-</text><text class="terminal-3952770330-r2" x="73.2" y="1191.2" textLength="24.4" clip-path="url(#terminal-3952770330-line-48)">-h</text><text class="terminal-3952770330-r2" x="97.6" y="1191.2" textLength="36.6" clip-path="url(#terminal-3952770330-line-48)">elp</text><text class="terminal-3952770330-r1" x="390.4" y="1191.2" textLength="610" clip-path="url(#terminal-3952770330-line-48)">Show this message and exit.                       </text><text class="terminal-3952770330-r9" x="1024.8" y="1191.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-48)">│</text><text class="terminal-3952770330-r1" x="1037" y="1191.2" textLength="12.2" clip-path="url(#terminal-3952770330-line-48)">
|
||||
</text><text class="terminal-3952770330-r9" x="0" y="1215.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-49)">╰─</text><text class="terminal-3952770330-r9" x="24.4" y="1215.6" textLength="512.4" clip-path="url(#terminal-3952770330-line-49)">──────────────────────────────────────────</text><text class="terminal-3952770330-r9" x="536.8" y="1215.6" textLength="122" clip-path="url(#terminal-3952770330-line-49)">  ♥ docs: </text><text class="terminal-3952770330-r9" x="658.8" y="1215.6" textLength="341.6" clip-path="url(#terminal-3952770330-line-49)">jessebot.github.io/onboardme</text><text class="terminal-3952770330-r9" x="1012.6" y="1215.6" textLength="24.4" clip-path="url(#terminal-3952770330-line-49)">─╯</text><text class="terminal-3952770330-r1" x="1037" y="1215.6" textLength="12.2" clip-path="url(#terminal-3952770330-line-49)">
|
||||
<g class="terminal-4070237589-matrix">
|
||||
<text class="terminal-4070237589-r1" x="0" y="20" textLength="622.2" clip-path="url(#terminal-4070237589-line-0)">                                               ☁️  </text><text class="terminal-4070237589-r2" x="610" y="20" textLength="85.4" clip-path="url(#terminal-4070237589-line-0)">OnBoard</text><text class="terminal-4070237589-r3" x="695.4" y="20" textLength="24.4" clip-path="url(#terminal-4070237589-line-0)">Me</text><text class="terminal-4070237589-r2" x="719.8" y="20" textLength="24.4" clip-path="url(#terminal-4070237589-line-0)"> 💻</text><text class="terminal-4070237589-r1" x="1342" y="20" textLength="12.2" clip-path="url(#terminal-4070237589-line-0)">
|
||||
</text><text class="terminal-4070237589-r4" x="24.4" y="44.4" textLength="646.6" clip-path="url(#terminal-4070237589-line-1)">Get your daily driver just the way you like it, from </text><text class="terminal-4070237589-r5" x="671" y="44.4" textLength="48.8" clip-path="url(#terminal-4070237589-line-1)">text</text><text class="terminal-4070237589-r6" x="732" y="44.4" textLength="122" clip-path="url(#terminal-4070237589-line-1)">formatting</text><text class="terminal-4070237589-r4" x="854" y="44.4" textLength="451.4" clip-path="url(#terminal-4070237589-line-1)">, and dot files to opensource package</text><text class="terminal-4070237589-r1" x="1342" y="44.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-1)">
|
||||
</text><text class="terminal-4070237589-r4" x="73.2" y="68.8" textLength="1183.4" clip-path="url(#terminal-4070237589-line-2)">installation, onboardme intends to save you time with initializing or upgrading your environment.</text><text class="terminal-4070237589-r1" x="1342" y="68.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-2)">
|
||||
</text><text class="terminal-4070237589-r1" x="1342" y="93.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-3)">
|
||||
</text><text class="terminal-4070237589-r7" x="0" y="117.6" textLength="61" clip-path="url(#terminal-4070237589-line-4)">Usage</text><text class="terminal-4070237589-r1" x="61" y="117.6" textLength="36.6" clip-path="url(#terminal-4070237589-line-4)">:  </text><text class="terminal-4070237589-r8" x="97.6" y="117.6" textLength="109.8" clip-path="url(#terminal-4070237589-line-4)">onboardme</text><text class="terminal-4070237589-r2" x="219.6" y="117.6" textLength="109.8" clip-path="url(#terminal-4070237589-line-4)">[OPTIONS]</text><text class="terminal-4070237589-r1" x="1342" y="117.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-4)">
|
||||
</text><text class="terminal-4070237589-r1" x="1342" y="142" textLength="12.2" clip-path="url(#terminal-4070237589-line-5)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-6)">╭─</text><text class="terminal-4070237589-r9" x="24.4" y="166.4" textLength="146.4" clip-path="url(#terminal-4070237589-line-6)"> ⌥  Options </text><text class="terminal-4070237589-r9" x="170.8" y="166.4" textLength="1146.8" clip-path="url(#terminal-4070237589-line-6)">──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4070237589-r9" x="1317.6" y="166.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-6)">─╮</text><text class="terminal-4070237589-r1" x="1342" y="166.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-6)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-7)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="190.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-7)">│</text><text class="terminal-4070237589-r1" x="1342" y="190.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-7)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-8)">│</text><text class="terminal-4070237589-r10" x="24.4" y="215.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-8)">-s</text><text class="terminal-4070237589-r2" x="61" y="215.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-8)">-</text><text class="terminal-4070237589-r2" x="73.2" y="215.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-8)">-s</text><text class="terminal-4070237589-r2" x="97.6" y="215.2" textLength="48.8" clip-path="url(#terminal-4070237589-line-8)">teps</text><text class="terminal-4070237589-r11" x="146.4" y="215.2" textLength="61" clip-path="url(#terminal-4070237589-line-8)"> STEP</text><text class="terminal-4070237589-r7" x="390.4" y="215.2" textLength="48.8" clip-path="url(#terminal-4070237589-line-8)">Only</text><text class="terminal-4070237589-r1" x="439.2" y="215.2" textLength="61" clip-path="url(#terminal-4070237589-line-8)"> run </text><text class="terminal-4070237589-r11" x="500.2" y="215.2" textLength="48.8" clip-path="url(#terminal-4070237589-line-8)">STEP</text><text class="terminal-4070237589-r1" x="549" y="215.2" textLength="756.4" clip-path="url(#terminal-4070237589-line-8)"> in the script.                                               </text><text class="terminal-4070237589-r9" x="1329.8" y="215.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-8)">│</text><text class="terminal-4070237589-r1" x="1342" y="215.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-8)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-9)">│</text><text class="terminal-4070237589-r1" x="390.4" y="239.6" textLength="109.8" clip-path="url(#terminal-4070237589-line-9)">Choices: </text><text class="terminal-4070237589-r11" x="500.2" y="239.6" textLength="109.8" clip-path="url(#terminal-4070237589-line-9)">dot_files</text><text class="terminal-4070237589-r1" x="610" y="239.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-9)">, </text><text class="terminal-4070237589-r11" x="634.4" y="239.6" textLength="97.6" clip-path="url(#terminal-4070237589-line-9)">packages</text><text class="terminal-4070237589-r1" x="732" y="239.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-9)">, </text><text class="terminal-4070237589-r11" x="756.4" y="239.6" textLength="122" clip-path="url(#terminal-4070237589-line-9)">font_setup</text><text class="terminal-4070237589-r1" x="878.4" y="239.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-9)">, </text><text class="terminal-4070237589-r11" x="902.8" y="239.6" textLength="146.4" clip-path="url(#terminal-4070237589-line-9)">neovim_setup</text><text class="terminal-4070237589-r1" x="1049.2" y="239.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-9)">, </text><text class="terminal-4070237589-r11" x="1073.6" y="239.6" textLength="134.2" clip-path="url(#terminal-4070237589-line-9)">group_setup</text><text class="terminal-4070237589-r1" x="1207.8" y="239.6" textLength="97.6" clip-path="url(#terminal-4070237589-line-9)">,       </text><text class="terminal-4070237589-r9" x="1329.8" y="239.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-9)">│</text><text class="terminal-4070237589-r1" x="1342" y="239.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-9)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4070237589-line-10)">│</text><text class="terminal-4070237589-r11" x="390.4" y="264" textLength="122" clip-path="url(#terminal-4070237589-line-10)">sudo_setup</text><text class="terminal-4070237589-r9" x="1329.8" y="264" textLength="12.2" clip-path="url(#terminal-4070237589-line-10)">│</text><text class="terminal-4070237589-r1" x="1342" y="264" textLength="12.2" clip-path="url(#terminal-4070237589-line-10)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-11)">│</text><text class="terminal-4070237589-r1" x="390.4" y="288.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-11)">Example: </text><text class="terminal-4070237589-r10" x="500.2" y="288.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-11)">-s</text><text class="terminal-4070237589-r11" x="536.8" y="288.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-11)">dot_files</text><text class="terminal-4070237589-r10" x="658.8" y="288.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-11)">-s</text><text class="terminal-4070237589-r11" x="695.4" y="288.4" textLength="97.6" clip-path="url(#terminal-4070237589-line-11)">packages</text><text class="terminal-4070237589-r9" x="1329.8" y="288.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-11)">│</text><text class="terminal-4070237589-r1" x="1342" y="288.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-11)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-12)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="312.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-12)">│</text><text class="terminal-4070237589-r1" x="1342" y="312.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-12)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-13)">│</text><text class="terminal-4070237589-r13" x="24.4" y="337.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-13)">-u</text><text class="terminal-4070237589-r14" x="61" y="337.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-13)">-</text><text class="terminal-4070237589-r14" x="73.2" y="337.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-13)">-g</text><text class="terminal-4070237589-r14" x="97.6" y="337.2" textLength="73.2" clip-path="url(#terminal-4070237589-line-13)">it_url</text><text class="terminal-4070237589-r9" x="170.8" y="337.2" textLength="48.8" clip-path="url(#terminal-4070237589-line-13)"> URL</text><text class="terminal-4070237589-r12" x="390.4" y="337.2" textLength="915" clip-path="url(#terminal-4070237589-line-13)">A git repo URL for your dot files. Default:                                </text><text class="terminal-4070237589-r9" x="1329.8" y="337.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-13)">│</text><text class="terminal-4070237589-r1" x="1342" y="337.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-13)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-14)">│</text><text class="terminal-4070237589-r9" x="390.4" y="361.6" textLength="451.4" clip-path="url(#terminal-4070237589-line-14)">https://github.com/jessebot/dot_files</text><text class="terminal-4070237589-r9" x="1329.8" y="361.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-14)">│</text><text class="terminal-4070237589-r1" x="1342" y="361.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-14)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="386" textLength="12.2" clip-path="url(#terminal-4070237589-line-15)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="386" textLength="12.2" clip-path="url(#terminal-4070237589-line-15)">│</text><text class="terminal-4070237589-r1" x="1342" y="386" textLength="12.2" clip-path="url(#terminal-4070237589-line-15)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-16)">│</text><text class="terminal-4070237589-r10" x="24.4" y="410.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-16)">-b</text><text class="terminal-4070237589-r2" x="61" y="410.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-16)">-</text><text class="terminal-4070237589-r2" x="73.2" y="410.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-16)">-g</text><text class="terminal-4070237589-r2" x="97.6" y="410.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-16)">it_branch</text><text class="terminal-4070237589-r11" x="207.4" y="410.4" textLength="85.4" clip-path="url(#terminal-4070237589-line-16)"> BRANCH</text><text class="terminal-4070237589-r1" x="390.4" y="410.4" textLength="915" clip-path="url(#terminal-4070237589-line-16)">Branch to use for the git repo url. Default: main                          </text><text class="terminal-4070237589-r9" x="1329.8" y="410.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-16)">│</text><text class="terminal-4070237589-r1" x="1342" y="410.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-16)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-17)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="434.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-17)">│</text><text class="terminal-4070237589-r1" x="1342" y="434.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-17)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-18)">│</text><text class="terminal-4070237589-r13" x="24.4" y="459.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-18)">-d</text><text class="terminal-4070237589-r14" x="61" y="459.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-18)">-</text><text class="terminal-4070237589-r14" x="73.2" y="459.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-18)">-g</text><text class="terminal-4070237589-r14" x="97.6" y="459.2" textLength="158.6" clip-path="url(#terminal-4070237589-line-18)">it_config_dir</text><text class="terminal-4070237589-r9" x="256.2" y="459.2" textLength="61" clip-path="url(#terminal-4070237589-line-18)"> PATH</text><text class="terminal-4070237589-r12" x="390.4" y="459.2" textLength="915" clip-path="url(#terminal-4070237589-line-18)">Directory to store the git configuration for your dot files. Default:      </text><text class="terminal-4070237589-r9" x="1329.8" y="459.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-18)">│</text><text class="terminal-4070237589-r1" x="1342" y="459.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-18)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-19)">│</text><text class="terminal-4070237589-r12" x="390.4" y="483.6" textLength="915" clip-path="url(#terminal-4070237589-line-19)">~/.config/dot_files                                                        </text><text class="terminal-4070237589-r9" x="1329.8" y="483.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-19)">│</text><text class="terminal-4070237589-r1" x="1342" y="483.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-19)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="508" textLength="12.2" clip-path="url(#terminal-4070237589-line-20)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="508" textLength="12.2" clip-path="url(#terminal-4070237589-line-20)">│</text><text class="terminal-4070237589-r1" x="1342" y="508" textLength="12.2" clip-path="url(#terminal-4070237589-line-20)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-21)">│</text><text class="terminal-4070237589-r10" x="24.4" y="532.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-21)">-O</text><text class="terminal-4070237589-r2" x="61" y="532.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-21)">-</text><text class="terminal-4070237589-r2" x="73.2" y="532.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-21)">-o</text><text class="terminal-4070237589-r2" x="97.6" y="532.4" textLength="97.6" clip-path="url(#terminal-4070237589-line-21)">verwrite</text><text class="terminal-4070237589-r7" x="390.4" y="532.4" textLength="122" clip-path="url(#terminal-4070237589-line-21)">Overwrites</text><text class="terminal-4070237589-r1" x="512.4" y="532.4" textLength="573.4" clip-path="url(#terminal-4070237589-line-21)"> existing dot files with files from configured </text><text class="terminal-4070237589-r2" x="1085.8" y="532.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-21)">-</text><text class="terminal-4070237589-r2" x="1098" y="532.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-21)">-g</text><text class="terminal-4070237589-r2" x="1122.4" y="532.4" textLength="73.2" clip-path="url(#terminal-4070237589-line-21)">it_url</text><text class="terminal-4070237589-r1" x="1195.6" y="532.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-21)"> repo. If</text><text class="terminal-4070237589-r9" x="1329.8" y="532.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-21)">│</text><text class="terminal-4070237589-r1" x="1342" y="532.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-21)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-22)">│</text><text class="terminal-4070237589-r1" x="390.4" y="556.8" textLength="585.6" clip-path="url(#terminal-4070237589-line-22)">you've set overwrite: true in your config, then </text><text class="terminal-4070237589-r2" x="976" y="556.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-22)">-</text><text class="terminal-4070237589-r2" x="988.2" y="556.8" textLength="24.4" clip-path="url(#terminal-4070237589-line-22)">-o</text><text class="terminal-4070237589-r2" x="1012.6" y="556.8" textLength="97.6" clip-path="url(#terminal-4070237589-line-22)">verwrite</text><text class="terminal-4070237589-r1" x="1110.2" y="556.8" textLength="195.2" clip-path="url(#terminal-4070237589-line-22)"> on the command </text><text class="terminal-4070237589-r9" x="1329.8" y="556.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-22)">│</text><text class="terminal-4070237589-r1" x="1342" y="556.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-22)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-23)">│</text><text class="terminal-4070237589-r1" x="390.4" y="581.2" textLength="915" clip-path="url(#terminal-4070237589-line-23)">line will act as a toggle, so it will NOT overwrite your dot files.        </text><text class="terminal-4070237589-r9" x="1329.8" y="581.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-23)">│</text><text class="terminal-4070237589-r1" x="1342" y="581.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-23)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-24)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="605.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-24)">│</text><text class="terminal-4070237589-r1" x="1342" y="605.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-24)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="630" textLength="12.2" clip-path="url(#terminal-4070237589-line-25)">│</text><text class="terminal-4070237589-r13" x="24.4" y="630" textLength="24.4" clip-path="url(#terminal-4070237589-line-25)">-p</text><text class="terminal-4070237589-r14" x="61" y="630" textLength="12.2" clip-path="url(#terminal-4070237589-line-25)">-</text><text class="terminal-4070237589-r14" x="73.2" y="630" textLength="24.4" clip-path="url(#terminal-4070237589-line-25)">-p</text><text class="terminal-4070237589-r14" x="97.6" y="630" textLength="134.2" clip-path="url(#terminal-4070237589-line-25)">kg_managers</text><text class="terminal-4070237589-r9" x="231.8" y="630" textLength="146.4" clip-path="url(#terminal-4070237589-line-25)"> PKG_MANAGER</text><text class="terminal-4070237589-r12" x="390.4" y="630" textLength="109.8" clip-path="url(#terminal-4070237589-line-25)">Specific </text><text class="terminal-4070237589-r9" x="500.2" y="630" textLength="134.2" clip-path="url(#terminal-4070237589-line-25)">PKG_MANAGER</text><text class="terminal-4070237589-r12" x="634.4" y="630" textLength="219.6" clip-path="url(#terminal-4070237589-line-25)"> to run. Choices: </text><text class="terminal-4070237589-r9" x="854" y="630" textLength="48.8" clip-path="url(#terminal-4070237589-line-25)">brew</text><text class="terminal-4070237589-r12" x="902.8" y="630" textLength="24.4" clip-path="url(#terminal-4070237589-line-25)">, </text><text class="terminal-4070237589-r9" x="927.2" y="630" textLength="85.4" clip-path="url(#terminal-4070237589-line-25)">pip3.11</text><text class="terminal-4070237589-r9" x="1329.8" y="630" textLength="12.2" clip-path="url(#terminal-4070237589-line-25)">│</text><text class="terminal-4070237589-r1" x="1342" y="630" textLength="12.2" clip-path="url(#terminal-4070237589-line-25)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-26)">│</text><text class="terminal-4070237589-r12" x="390.4" y="654.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-26)">Example: </text><text class="terminal-4070237589-r13" x="500.2" y="654.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-26)">-p</text><text class="terminal-4070237589-r9" x="536.8" y="654.4" textLength="48.8" clip-path="url(#terminal-4070237589-line-26)">brew</text><text class="terminal-4070237589-r13" x="597.8" y="654.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-26)">-p</text><text class="terminal-4070237589-r9" x="634.4" y="654.4" textLength="85.4" clip-path="url(#terminal-4070237589-line-26)">pip3.11</text><text class="terminal-4070237589-r9" x="1329.8" y="654.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-26)">│</text><text class="terminal-4070237589-r1" x="1342" y="654.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-26)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-27)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="678.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-27)">│</text><text class="terminal-4070237589-r1" x="1342" y="678.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-27)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-28)">│</text><text class="terminal-4070237589-r10" x="24.4" y="703.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-28)">-g</text><text class="terminal-4070237589-r2" x="61" y="703.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-28)">-</text><text class="terminal-4070237589-r2" x="73.2" y="703.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-28)">-p</text><text class="terminal-4070237589-r2" x="97.6" y="703.2" textLength="109.8" clip-path="url(#terminal-4070237589-line-28)">kg_groups</text><text class="terminal-4070237589-r11" x="207.4" y="703.2" textLength="122" clip-path="url(#terminal-4070237589-line-28)"> PKG_GROUP</text><text class="terminal-4070237589-r1" x="390.4" y="703.2" textLength="915" clip-path="url(#terminal-4070237589-line-28)">Package groups to install.                                                 </text><text class="terminal-4070237589-r9" x="1329.8" y="703.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-28)">│</text><text class="terminal-4070237589-r1" x="1342" y="703.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-28)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-29)">│</text><text class="terminal-4070237589-r1" x="390.4" y="727.6" textLength="109.8" clip-path="url(#terminal-4070237589-line-29)">Choices: </text><text class="terminal-4070237589-r11" x="500.2" y="727.6" textLength="85.4" clip-path="url(#terminal-4070237589-line-29)">default</text><text class="terminal-4070237589-r1" x="585.6" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="610" y="727.6" textLength="146.4" clip-path="url(#terminal-4070237589-line-29)">data_science</text><text class="terminal-4070237589-r1" x="756.4" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="780.8" y="727.6" textLength="73.2" clip-path="url(#terminal-4070237589-line-29)">devops</text><text class="terminal-4070237589-r1" x="854" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="878.4" y="727.6" textLength="73.2" clip-path="url(#terminal-4070237589-line-29)">gaming</text><text class="terminal-4070237589-r1" x="951.6" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="976" y="727.6" textLength="36.6" clip-path="url(#terminal-4070237589-line-29)">gui</text><text class="terminal-4070237589-r1" x="1012.6" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="1037" y="727.6" textLength="48.8" clip-path="url(#terminal-4070237589-line-29)">mail</text><text class="terminal-4070237589-r1" x="1085.8" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="1110.2" y="727.6" textLength="61" clip-path="url(#terminal-4070237589-line-29)">music</text><text class="terminal-4070237589-r1" x="1171.2" y="727.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-29)">, </text><text class="terminal-4070237589-r11" x="1195.6" y="727.6" textLength="48.8" clip-path="url(#terminal-4070237589-line-29)">work</text><text class="terminal-4070237589-r9" x="1329.8" y="727.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-29)">│</text><text class="terminal-4070237589-r1" x="1342" y="727.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-29)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="752" textLength="12.2" clip-path="url(#terminal-4070237589-line-30)">│</text><text class="terminal-4070237589-r1" x="390.4" y="752" textLength="109.8" clip-path="url(#terminal-4070237589-line-30)">Example: </text><text class="terminal-4070237589-r10" x="500.2" y="752" textLength="24.4" clip-path="url(#terminal-4070237589-line-30)">-g</text><text class="terminal-4070237589-r11" x="536.8" y="752" textLength="73.2" clip-path="url(#terminal-4070237589-line-30)">devops</text><text class="terminal-4070237589-r10" x="622.2" y="752" textLength="24.4" clip-path="url(#terminal-4070237589-line-30)">-g</text><text class="terminal-4070237589-r11" x="658.8" y="752" textLength="73.2" clip-path="url(#terminal-4070237589-line-30)">gaming</text><text class="terminal-4070237589-r9" x="1329.8" y="752" textLength="12.2" clip-path="url(#terminal-4070237589-line-30)">│</text><text class="terminal-4070237589-r1" x="1342" y="752" textLength="12.2" clip-path="url(#terminal-4070237589-line-30)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-31)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="776.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-31)">│</text><text class="terminal-4070237589-r1" x="1342" y="776.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-31)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-32)">│</text><text class="terminal-4070237589-r13" x="24.4" y="800.8" textLength="24.4" clip-path="url(#terminal-4070237589-line-32)">-f</text><text class="terminal-4070237589-r14" x="61" y="800.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-32)">-</text><text class="terminal-4070237589-r14" x="73.2" y="800.8" textLength="24.4" clip-path="url(#terminal-4070237589-line-32)">-f</text><text class="terminal-4070237589-r14" x="97.6" y="800.8" textLength="85.4" clip-path="url(#terminal-4070237589-line-32)">irewall</text><text class="terminal-4070237589-r12" x="390.4" y="800.8" textLength="231.8" clip-path="url(#terminal-4070237589-line-32)">Setup iptables (on </text><text class="terminal-4070237589-r15" x="622.2" y="800.8" textLength="61" clip-path="url(#terminal-4070237589-line-32)">linux</text><text class="terminal-4070237589-r12" x="683.2" y="800.8" textLength="622.2" clip-path="url(#terminal-4070237589-line-32)"> only).                                            </text><text class="terminal-4070237589-r9" x="1329.8" y="800.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-32)">│</text><text class="terminal-4070237589-r1" x="1342" y="800.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-32)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-33)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="825.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-33)">│</text><text class="terminal-4070237589-r1" x="1342" y="825.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-33)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-34)">│</text><text class="terminal-4070237589-r10" x="24.4" y="849.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-34)">-r</text><text class="terminal-4070237589-r2" x="61" y="849.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-34)">-</text><text class="terminal-4070237589-r2" x="73.2" y="849.6" textLength="24.4" clip-path="url(#terminal-4070237589-line-34)">-r</text><text class="terminal-4070237589-r2" x="97.6" y="849.6" textLength="122" clip-path="url(#terminal-4070237589-line-34)">emote_host</text><text class="terminal-4070237589-r11" x="219.6" y="849.6" textLength="97.6" clip-path="url(#terminal-4070237589-line-34)"> IP_ADDR</text><text class="terminal-4070237589-r1" x="390.4" y="849.6" textLength="402.6" clip-path="url(#terminal-4070237589-line-34)">Setup SSH on a random port & add </text><text class="terminal-4070237589-r11" x="793" y="849.6" textLength="85.4" clip-path="url(#terminal-4070237589-line-34)">IP_ADDR</text><text class="terminal-4070237589-r1" x="878.4" y="849.6" textLength="427" clip-path="url(#terminal-4070237589-line-34)"> to firewall                       </text><text class="terminal-4070237589-r9" x="1329.8" y="849.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-34)">│</text><text class="terminal-4070237589-r1" x="1342" y="849.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-34)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="874" textLength="12.2" clip-path="url(#terminal-4070237589-line-35)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="874" textLength="12.2" clip-path="url(#terminal-4070237589-line-35)">│</text><text class="terminal-4070237589-r1" x="1342" y="874" textLength="12.2" clip-path="url(#terminal-4070237589-line-35)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-36)">│</text><text class="terminal-4070237589-r13" x="24.4" y="898.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-36)">-n</text><text class="terminal-4070237589-r14" x="61" y="898.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-36)">-</text><text class="terminal-4070237589-r14" x="73.2" y="898.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-36)">-n</text><text class="terminal-4070237589-r14" x="97.6" y="898.4" textLength="109.8" clip-path="url(#terminal-4070237589-line-36)">o_upgrade</text><text class="terminal-4070237589-r12" x="390.4" y="898.4" textLength="915" clip-path="url(#terminal-4070237589-line-36)">Do not upgrade the existing brew or apt packages.                          </text><text class="terminal-4070237589-r9" x="1329.8" y="898.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-36)">│</text><text class="terminal-4070237589-r1" x="1342" y="898.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-36)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-37)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="922.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-37)">│</text><text class="terminal-4070237589-r1" x="1342" y="922.8" textLength="12.2" clip-path="url(#terminal-4070237589-line-37)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-38)">│</text><text class="terminal-4070237589-r2" x="61" y="947.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-38)">-</text><text class="terminal-4070237589-r2" x="73.2" y="947.2" textLength="24.4" clip-path="url(#terminal-4070237589-line-38)">-v</text><text class="terminal-4070237589-r2" x="97.6" y="947.2" textLength="73.2" clip-path="url(#terminal-4070237589-line-38)">ersion</text><text class="terminal-4070237589-r1" x="390.4" y="947.2" textLength="915" clip-path="url(#terminal-4070237589-line-38)">Print the version of onboardme (1.5.0)                                   </text><text class="terminal-4070237589-r9" x="1329.8" y="947.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-38)">│</text><text class="terminal-4070237589-r1" x="1342" y="947.2" textLength="12.2" clip-path="url(#terminal-4070237589-line-38)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-39)">│</text><text class="terminal-4070237589-r9" x="1329.8" y="971.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-39)">│</text><text class="terminal-4070237589-r1" x="1342" y="971.6" textLength="12.2" clip-path="url(#terminal-4070237589-line-39)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="996" textLength="12.2" clip-path="url(#terminal-4070237589-line-40)">│</text><text class="terminal-4070237589-r14" x="61" y="996" textLength="12.2" clip-path="url(#terminal-4070237589-line-40)">-</text><text class="terminal-4070237589-r14" x="73.2" y="996" textLength="24.4" clip-path="url(#terminal-4070237589-line-40)">-h</text><text class="terminal-4070237589-r14" x="97.6" y="996" textLength="36.6" clip-path="url(#terminal-4070237589-line-40)">elp</text><text class="terminal-4070237589-r12" x="390.4" y="996" textLength="915" clip-path="url(#terminal-4070237589-line-40)">Show this message and exit.                                                </text><text class="terminal-4070237589-r9" x="1329.8" y="996" textLength="12.2" clip-path="url(#terminal-4070237589-line-40)">│</text><text class="terminal-4070237589-r1" x="1342" y="996" textLength="12.2" clip-path="url(#terminal-4070237589-line-40)">
|
||||
</text><text class="terminal-4070237589-r9" x="0" y="1020.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-41)">╰─</text><text class="terminal-4070237589-r9" x="24.4" y="1020.4" textLength="817.4" clip-path="url(#terminal-4070237589-line-41)">───────────────────────────────────────────────────────────────────</text><text class="terminal-4070237589-r9" x="841.8" y="1020.4" textLength="122" clip-path="url(#terminal-4070237589-line-41)">  ♥ docs: </text><text class="terminal-4070237589-r9" x="963.8" y="1020.4" textLength="341.6" clip-path="url(#terminal-4070237589-line-41)">jessebot.github.io/onboardme</text><text class="terminal-4070237589-r9" x="1317.6" y="1020.4" textLength="24.4" clip-path="url(#terminal-4070237589-line-41)">─╯</text><text class="terminal-4070237589-r1" x="1342" y="1020.4" textLength="12.2" clip-path="url(#terminal-4070237589-line-41)">
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 46 KiB |
|
@ -51,6 +51,8 @@ poetry publish --username __token__ --password $PYPI_TOKEN
|
|||
|
||||
Here's a github action that does it for you: [JRubics/poetry-publish][3]
|
||||
|
||||
Check out more poetry docs at [here](https://jessebot.github.io/onboardme/python/poetry).
|
||||
|
||||
## What about brew?
|
||||
Well, that's a rabbit hole that I haven't had a chance to go down yet, but you
|
||||
probably want to start here:
|
||||
|
|
25
docs/python/poetry.md
Normal file
25
docs/python/poetry.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
layout: default
|
||||
title: Packaging
|
||||
description: "Poetry"
|
||||
parent: Python
|
||||
permalink: /python/poetry
|
||||
---
|
||||
|
||||
# Poetry
|
||||
[poetry](https://python-poetry.org/) is:
|
||||
> Python packaging and dependency management made easy
|
||||
|
||||
|
||||
## Tips and Tricks
|
||||
|
||||
Clearing cache:
|
||||
|
||||
```bash
|
||||
poetry cache list
|
||||
```
|
||||
|
||||
Poetry environment files on macOS default to this directory:
|
||||
```bash
|
||||
/Users/$(whoami)/Library/Caches/pypoetry/virtualenvs/
|
||||
```
|
|
@ -112,6 +112,11 @@ def setup_logger(level="", log_file=""):
|
|||
metavar='BRANCH',
|
||||
help=HELP['git_branch'],
|
||||
default=USR_CONFIG_FILE['dot_files']['git_branch'])
|
||||
@option('--git_config_dir',
|
||||
'-d',
|
||||
metavar='PATH',
|
||||
help=HELP['git_config_dir'],
|
||||
default=USR_CONFIG_FILE['dot_files']['git_config_dir'])
|
||||
@option('--overwrite',
|
||||
'-O',
|
||||
is_flag=True,
|
||||
|
@ -153,7 +158,7 @@ def setup_logger(level="", log_file=""):
|
|||
default=False)
|
||||
def main(log_level, log_file,
|
||||
steps,
|
||||
git_url, git_branch, overwrite,
|
||||
git_url, git_branch, git_config_dir, overwrite,
|
||||
pkg_managers, pkg_groups,
|
||||
firewall, remote_host,
|
||||
no_upgrade,
|
||||
|
@ -177,8 +182,10 @@ def main(log_level, log_file,
|
|||
log = setup_logger(log_level, log_file)
|
||||
|
||||
# makes sure we only overwrite config file prefs if cli opts are passed in
|
||||
usr_pref = process_configs(overwrite, git_url, git_branch, pkg_managers,
|
||||
pkg_groups, firewall, remote_host, steps,
|
||||
usr_pref = process_configs(overwrite, git_url, git_branch, git_config_dir,
|
||||
pkg_managers, pkg_groups,
|
||||
firewall, remote_host,
|
||||
steps,
|
||||
log_file, log_level)
|
||||
|
||||
if log:
|
||||
|
@ -193,7 +200,8 @@ def main(log_level, log_file,
|
|||
# this creates a live git repo out of your home directory
|
||||
df_prefs = usr_pref['dot_files']
|
||||
setup_dot_files(OS, df_prefs['overwrite'],
|
||||
df_prefs['git_url'], df_prefs['git_branch'])
|
||||
df_prefs['git_url'], df_prefs['git_branch'],
|
||||
df_prefs['git_config_dir'])
|
||||
|
||||
elif step == 'packages':
|
||||
pkg_mngrs = usr_pref['package']['managers'][OS[0]]
|
||||
|
|
|
@ -13,33 +13,38 @@ from .console_logging import print_panel, print_msg
|
|||
from .subproc import subproc
|
||||
|
||||
|
||||
XDG_GIT_CFG_DIR = path.join(XDG_CONFIG_DIR, 'git')
|
||||
Path(XDG_GIT_CFG_DIR).mkdir(exist_ok=True)
|
||||
XDG_GIT_PATH = path.join(XDG_GIT_CFG_DIR, 'config')
|
||||
xdg_git_config_dir = path.join(XDG_CONFIG_DIR, 'git')
|
||||
Path(xdg_git_config_dir).mkdir(exist_ok=True)
|
||||
XDG_GIT_CONFIG = path.join(xdg_git_config_dir, 'config')
|
||||
|
||||
|
||||
def setup_dot_files(OS='Linux', overwrite=False,
|
||||
def setup_dot_files(OS='Linux',
|
||||
overwrite=False,
|
||||
git_url="https://github.com/jessebot/dot_files.git",
|
||||
branch="main") -> None:
|
||||
branch="main",
|
||||
dot_files_cfg_dir=f"{XDG_CONFIG_DIR}/dot_files") -> None:
|
||||
"""
|
||||
note on how we're doing things, seperate dot files repo:
|
||||
https://probablerobot.net/2021/05/keeping-'live'-dotfiles-in-a-git-repo/
|
||||
|
||||
|
||||
"""
|
||||
git_dir = path.join(HOME_DIR, '.git_dot_files')
|
||||
# create ~/.git_dot_files if it does not exist
|
||||
Path(git_dir).mkdir(exist_ok=True)
|
||||
chdir(git_dir)
|
||||
opts = {'quiet': True, 'cwd': git_dir}
|
||||
# create dot_files_cfg_dir if it doesn't exist/don't complain if it does
|
||||
# defaults to ~/.config/dot_files
|
||||
Path(dot_files_cfg_dir).mkdir(parents=True, exist_ok=True)
|
||||
chdir(dot_files_cfg_dir)
|
||||
opts = {'quiet': True, 'cwd': dot_files_cfg_dir}
|
||||
|
||||
if git_url:
|
||||
if "github.com" in git_url:
|
||||
# get just the owner/repo_name like jessebot/dot_files
|
||||
user_repo = "/".join(git_url.split("/")[-2:]).replace(".git", "")
|
||||
|
||||
# global: use main as default branch, always push up new remote branch
|
||||
git_raw = f"https://raw.githubusercontent.com/{user_repo}/{branch}"
|
||||
|
||||
cmds = [f'curl {git_raw}/.config/git/config -o {XDG_GIT_PATH}',
|
||||
f'git --git-dir={git_dir} --work-tree={HOME_DIR} init',
|
||||
cmds = [f'curl {git_raw}/.config/git/config -o {XDG_GIT_CONFIG}',
|
||||
f'git --git-dir={dot_files_cfg_dir} --work-tree={HOME_DIR} init',
|
||||
'git config status.showUntrackedFiles no']
|
||||
subproc(cmds, spinner=False, **opts)
|
||||
|
||||
|
@ -47,6 +52,11 @@ def setup_dot_files(OS='Linux', overwrite=False,
|
|||
cmds = [f"git remote add origin {git_url}"]
|
||||
subproc(cmds, error_ok=True, spinner=False, **opts)
|
||||
|
||||
# create ~/.config/.git to get git status while editing config files
|
||||
if not path.isfile(f"{XDG_CONFIG_DIR}/.git"):
|
||||
with open(f"{XDG_CONFIG_DIR}/.git") as config_git_config:
|
||||
config_git_config.write(f"gitdir: {dot_files_cfg_dir}")
|
||||
|
||||
if overwrite:
|
||||
# WARN: this command will overwrite local files with remote files
|
||||
reset_cmd = f"git reset --hard origin/{branch}"
|
||||
|
|
|
@ -8,7 +8,7 @@ import logging as log
|
|||
from rich.prompt import Confirm
|
||||
|
||||
# custom libs
|
||||
from .constants import OS, USR_CONFIG_FILE, DEFAULT_PKG_GROUPS
|
||||
from .constants import OS, USR_CONFIG_FILE, DEFAULT_PKG_GROUPS, HOME_DIR
|
||||
from .console_logging import print_panel
|
||||
|
||||
|
||||
|
@ -98,9 +98,16 @@ def fill_in_defaults(defaults: dict, user_config: dict,
|
|||
return user_config
|
||||
|
||||
|
||||
def process_configs(overwrite: bool, repo: str, git_branch: str,
|
||||
pkg_mngrs: list, pkg_groups: list, firewall: bool,
|
||||
remote_host: str, steps: list, log_file: str,
|
||||
def process_configs(overwrite: bool,
|
||||
repo: str,
|
||||
git_branch: str,
|
||||
git_config_dir: str,
|
||||
pkg_mngrs: list,
|
||||
pkg_groups: list,
|
||||
firewall: bool,
|
||||
remote_host: str,
|
||||
steps: list,
|
||||
log_file: str,
|
||||
log_level: str) -> dict:
|
||||
"""
|
||||
process the config in ~/.config/onboardme/config.yml if it exists,
|
||||
|
@ -112,6 +119,8 @@ def process_configs(overwrite: bool, repo: str, git_branch: str,
|
|||
if type(remote_host) is str:
|
||||
remote_host = [remote_host]
|
||||
|
||||
if "~" in git_config_dir:
|
||||
git_config_dir = git_config_dir.replace("~", HOME_DIR)
|
||||
|
||||
cli_dict = {'package': {'managers': {OS[0]: pkg_mngrs},
|
||||
'groups': pkg_groups},
|
||||
|
@ -120,7 +129,9 @@ def process_configs(overwrite: bool, repo: str, git_branch: str,
|
|||
'firewall': firewall,
|
||||
'steps': {OS[0]: steps},
|
||||
'dot_files': {'overwrite': overwrite,
|
||||
'git_url': repo, 'git_branch': git_branch}}
|
||||
'git_url': repo,
|
||||
'git_branch': git_branch,
|
||||
'git_config_dir': git_config_dir}}
|
||||
|
||||
log.debug(f"cli_dict is:\n{cli_dict}\n")
|
||||
|
||||
|
|
|
@ -41,15 +41,6 @@ def options_help() -> dict:
|
|||
pkg_group_choices = pretty_choices(DEFAULT_PKG_GROUPS + OPT_PKG_GROUPS)
|
||||
|
||||
return {
|
||||
'log_level':
|
||||
f'Logging level. {logging_choices}\nDefault: [meta]warn[/meta]',
|
||||
|
||||
'log_file':
|
||||
'Full path to file to log to, if set.',
|
||||
|
||||
'quiet':
|
||||
"unstable. Don't output to stdout. ",
|
||||
|
||||
'steps':
|
||||
f'[b]Only[/b] run [meta]STEP[/] in the script.\n{step_choices}\nExampl'
|
||||
'e: [switch]-s[/] [meta]dot_files[/] [switch]-s[/] [meta]packages',
|
||||
|
@ -60,6 +51,10 @@ def options_help() -> dict:
|
|||
'git_branch':
|
||||
'Branch to use for the git repo url. Default: main',
|
||||
|
||||
'git_config_dir':
|
||||
'Directory to store the git configuration for your dot files. '
|
||||
'Default: ~/.config/dot_files',
|
||||
|
||||
'overwrite':
|
||||
'[b]Overwrites[/b] existing dot files with files from configured '
|
||||
"[option]--git_url[/option] repo. If you've set overwrite: true in "
|
||||
|
@ -84,7 +79,17 @@ def options_help() -> dict:
|
|||
'Setup iptables (on [i]linux[/] only).',
|
||||
|
||||
'version':
|
||||
f'Print the version of onboardme ({VERSION})'
|
||||
f'Print the version of onboardme ({VERSION})',
|
||||
|
||||
'log_level':
|
||||
f'Logging level. {logging_choices}\nDefault: [meta]warn[/meta]',
|
||||
|
||||
'log_file':
|
||||
'Full path to file to log to, if set.',
|
||||
|
||||
'quiet':
|
||||
"unstable. Don't output to stdout. "
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -127,8 +132,8 @@ class RichCommand(click.Command):
|
|||
row_styles=["", "dim"],
|
||||
padding=(1, 1, 0, 0))
|
||||
|
||||
# this used to be self.get_params(ctx)[1:] and I don't know why
|
||||
for param in self.get_params(ctx):
|
||||
# this used to be self.get_params(ctx)[1:] to have only one hidden option
|
||||
for param in self.get_params(ctx)[2:]:
|
||||
|
||||
if len(param.opts) == 2:
|
||||
opt1 = highlighter(param.opts[1])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "onboardme"
|
||||
version = "1.4.1"
|
||||
version = "1.5.0"
|
||||
description = "Install dot files and packages, including a base mode with sensible defaults to run on most computers running Debian based distros or macOS."
|
||||
authors = [
|
||||
"Jesse Hitch <jessebot@linux.com>",
|
||||
|
@ -19,8 +19,7 @@ classifiers = ["Development Status :: 3 - Alpha",
|
|||
"Topic :: System :: Installation/Setup",
|
||||
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"]
|
||||
packages = [{include = "onboardme"}]
|
||||
include = ["onboardme/scripts/update_apt_sources.sh",
|
||||
"onboardme/scripts/get_apt_list.sh"]
|
||||
include = ["onboardme/scripts/update_apt_sources.sh"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue