diff options
| -rw-r--r-- | .aliases | 1 | ||||
| -rw-r--r-- | Brewfile | 12 | ||||
| -rwxr-xr-x | weekly-jobs.sh | 7 |
3 files changed, 17 insertions, 3 deletions
@@ -12,6 +12,7 @@ alias afk='pmset displaysleepnow' alias dl="cd ~/Downloads" alias l='ls -l' alias todo='todoist l --filter "#Inbox"' +alias docker=podman # Kill all the tabs in Chrome to free up memory # [C] explained: http://www.commandlinefu.com/commands/view/402/exclude-grep-from-your-grepped-output-of-ps-alias-included-in-description @@ -103,6 +103,15 @@ brew "clang-format" tap "minio/stable" brew "mc" +# Container-related tools +brew "podman" +brew "podman-compose" +cask "podman-desktop" + +# Tools to keep us up to date +tap "frdmn/formulas" +brew "homebrew-update-notifier" # Remember to run: brew services start homebrew-update-notifier + # Taskfile tap "go-task/tap" brew "go-task" @@ -132,9 +141,6 @@ cask "pandoc" cask "todoist" # Deprecated applications -cask "iterm2" # Expires at 2022-04-01? -cask "tunnelblick" # Expires at 2022-04-01? -cask "docker" # Expires at 2022-04-01? cask "adobe-creative-cloud" # Expires at 2023-04-01? # My tools diff --git a/weekly-jobs.sh b/weekly-jobs.sh new file mode 100755 index 0000000..f71f198 --- /dev/null +++ b/weekly-jobs.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +# This script runs every week at noon on Mondays +# It is used to schedule tasks on my computer + +# Save secrets locally +sh ~/ghq/github.com/simenandre/secrets/save-secrets-locally.sh
\ No newline at end of file |
