-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
91 brew packages being installed even if they are already installed (#97
) * changing to proper package names instead of aliases for rich-cli, the_silver_searcher, and node * better logging * update to openssl v3 * remove alfred, move imagemagick to linuxbrew + macbrew section, and add back karabiner-elements * refactor to make more maintainable * adding more debug lines for pkg installation and changing when nvidia drivers are installed
- Loading branch information
Showing
3 changed files
with
87 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,13 +29,17 @@ brew: | |
# A cat(1) clone with syntax highlighting and Git integration. | ||
- bat | ||
# pretty formatting and syntax highlighting | ||
- rich | ||
- rich-cli | ||
# file TUI: https://www.geeksforgeeks.org/ranger-a-cli-file-manager/ | ||
- ranger | ||
# preview videos in the terminal | ||
- ffmpegthumbnailer | ||
# like grep or ack, but more modern, for searching file text | ||
- ag | ||
# cat images in the terminal (e.g. img2sixel imagename.png) | ||
- libsixel | ||
# for working with images and making lsimg work | ||
- imagemagick | ||
# ag command: like grep or ack, but more modern, for searching file text | ||
- the_silver_searcher | ||
# diff, but with colors | ||
- colordiff | ||
- htop | ||
|
@@ -63,7 +67,7 @@ brew: | |
# programming languages and their package managers | ||
- [email protected] | ||
- go | ||
- npm | ||
- node | ||
# linter for YAML | ||
- yamllint | ||
# linter for html5 | ||
|
@@ -77,7 +81,7 @@ brew: | |
# get the quick, short text of how to use various commands | ||
- tldr | ||
# generating SSL certs and random strings | ||
- openssl | ||
- openssl@3 | ||
# password management | ||
- bitwarden-cli | ||
# anti virus | ||
|
@@ -91,25 +95,21 @@ brew: | |
# this lets us resize windows | ||
- "--cask rectangle" | ||
# productivity search and command bar | ||
- "--cask alfred" | ||
# - "--cask alfred" | ||
# Default browser | ||
- "--cask firefox" | ||
# Default email client | ||
- "--cask thunderbird" | ||
# File server | ||
- "--cask nextcloud" | ||
# - "--cask nextcloud" | ||
# Default terminal used by most macOS users, standard | ||
- "--cask iterm2" | ||
# backup terminal written in javascript :shrug: | ||
- "--cask hyper" | ||
# gives us the default gnu/linux sed we all know and love | ||
- "gnu-sed" | ||
# cat images in the terminal (e.g. img2sixel imagename.png) | ||
- libsixel | ||
# for working with images and making lsimg work | ||
- imagemagick | ||
# remap keys... not working yet though :< | ||
# - "--cask karabiner-elements" | ||
# remap keys on macOS | ||
- "--cask karabiner-elements" | ||
# This should be docker desktop | ||
- "--cask docker" | ||
# primary media player | ||
|
@@ -191,9 +191,9 @@ apt: | |
- gufw | ||
gaming: | ||
# helpful for gaming on linux | ||
- "nvidia-driver-libs:i386" | ||
- lutris | ||
- "steam:i386" | ||
- "nvidia-driver-libs:i386" | ||
# to format disks to exFAT; FAT is too thin for modern windows 10 ISOs | ||
# - exfat-utils | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "onboardme" | ||
version = "0.15.6" | ||
version = "0.15.7" | ||
description = "An onboarding tool to install dot files and packages including a default mode with sensible defaults to run on most Debian/macOS machines." | ||
authors = ["Jesse Hitch <[email protected]>"] | ||
license = "AGPL-3.0-or-later" | ||
|