- General > Show Battery Percentage: On
- Style: Dark
- Accent: Green
- BG: Static, row 1, col 3
# Install brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install bitwarden | |
brew install visual-studio-code | |
brew install google-chrome | |
brew install firefox |
#!/bin/bash | |
# Based on: https://dev.to/christianpaez/simplifying-path-management-with-bash-4870 | |
# Install via: | |
# sudo curl -o /usr/bin/add-path -L https://gist.githubusercontent.com/shawngmc/954ef4ccee03a26f1774c5b922e27777/raw/add-path | |
# sudo chmod 755 /usr/bin/add-path | |
unset dir_to_add | |
unset force_add | |
unset do_add |
OK, so I love the idea of SELinux. I like the idea of process permissions and quasi-sandboxing. What I hate about SELinux is:
Let's see if I can help myself (and maybe you!) understand it a bit better.
homeassistant | s6-rc: info: service s6rc-oneshot-runner: starting | |
homeassistant | s6-rc: info: service s6rc-oneshot-runner successfully started | |
homeassistant | s6-rc: info: service fix-attrs: starting | |
homeassistant | s6-rc: info: service fix-attrs successfully started | |
homeassistant | s6-rc: info: service legacy-cont-init: starting | |
homeassistant | s6-rc: info: service legacy-cont-init successfully started | |
homeassistant | s6-rc: info: service legacy-services: starting | |
homeassistant | services-up: info: copying legacy longrun home-assistant (no readiness notification) | |
homeassistant | s6-rc: info: service legacy-services successfully started | |
homeassistant | [33m2023-01-03 17:03:52.653 WARNING (SyncWorker_1) [homeassistant.loader] We found a custom integration pyscript which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant[0m |
# Updates | |
sudo apt-get update | |
# Prereqs | |
# Gnome-keyring - vscode uses, local secrets management | |
sudo apt-get install -y \ | |
gnome-keyring | |
# Node/NPM/NVM | |
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash |
[default] | |
aws_access_key_id=XXXXXXXXXXXXXXXXXXXX | |
aws_secret_access_key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
aws_region=us-east-1 |
#!/bin/bash | |
logMessage() { | |
local MESSAGE=$1; | |
local TIMESTAMP=""; | |
TIMESTAMP=$(date +%Y-%m-%dT%H:%M:%S.%3NZ); | |
local CALLER=""; | |
CALLER=$(readlink -f "$0"); | |
echo "$TIMESTAMP: [$CALLER] $MESSAGE"; | |
} |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
#!/bin/bash | |
# Debug stuff | |
set -o errexit; | |
set -o pipefall; | |
set -o nounset; | |
set -o xtrace; | |
# Add repo, package and service | |
sudo add-apt-repository ppa:gluster/glusterfs-4.1 |