update where we keep our cron jobs

This commit is contained in:
JesseBot 2024-10-21 13:33:19 +02:00
parent d3f8c94c0c
commit 9ab65f2936
No known key found for this signature in database
5 changed files with 5 additions and 37 deletions

View file

@ -1 +1,5 @@
onboardme -s dot_files -s packages -s font_setup -s neovim_setup -p brew -p pipx -p pip3.12 -g default -g default
# update dot files, package managers, and neovim
onboardme -s dot_files -s packages -s neovim_setup -p brew -p pipx -p pip3.12
# update tldr
tldr --update

View file

@ -1,11 +0,0 @@
# Some simple terminal alarms
Just a simple set of cronjobs to remind you in your terminal to keep to a sane work schedule.
*On mac, it now speaks the alarm as well :)* Coming soon to Linux~!!
## QuickStart
```
mkdir ~/cron
cp alarms.sh ~/cron && cp reminders_crontab ~/cron
crontab ~/cron/reminders_crontab
```

View file

@ -1,25 +0,0 @@
#!/bin/bash -
#==============================================================================#
# #
# FILE: updates.sh #
# #
# USAGE: ./updates.sh #
# #
# DESCRIPTION: Run updates for packages managers and various programs. #
# Currently Supported programs: tldr, brew #
# #
# OPTIONS: --- #
# REQUIREMENTS: --- #
# AUTHOR: @jessebot #
# CREATED: 09/16/2022 12:31:37 PM #
# LAST_MODIFIED: Sat Apr 6 09:08:58 AM CEST 2024 #
#==============================================================================#
# Treat unset variables as an error
set -o nounset
# update my tldr data (cli tool for cheatsheets)
tldr --update
# updates all packages
onboardme -O