more tweaks

This commit is contained in:
2026-03-07 21:51:19 +00:00
parent 40ff012dbe
commit 0adc324277
5 changed files with 37 additions and 17 deletions
+20
View File
@@ -0,0 +1,20 @@
# If not running interactively, don't do anything (leave this at the top of this file)
[[ $- != *i* ]] && return
# All the default Omarchy aliases and functions
# (don't mess with these directly, just overwrite them here!)
source ~/.local/share/omarchy/default/bash/rc
# Add your own exports, aliases, and functions here.
#
# Make an alias for invoking commands you use constantly
# alias p='python'
. "$HOME/.cargo/env"
. "$HOME/.local/share/../bin/env"
alias zed='zeditor'
alias la='ls -la'
fastfetch
-16
View File
@@ -47,7 +47,6 @@
autoSetupRemote = true # easier to push new branches autoSetupRemote = true # easier to push new branches
default = current # push only current branch by default default = current # push only current branch by default
followTags = true # push also tags followTags = true # push also tags
gpgSign = false # my remotes doesn't support sign pushes
[pull] [pull]
rebase = true rebase = true
@@ -75,28 +74,13 @@
context = white context = white
whitespace = yellow reverse whitespace = yellow reverse
[interactive]
diffFilter = diff-so-fancy --patch
singlekey = true
# Third-party: diff-so-fancy
[diff-so-fancy]
markEmptyLines = false
# URL shortcuts # URL shortcuts
[url "git@github.com:"] [url "git@github.com:"]
insteadOf = "gh:" insteadOf = "gh:"
[url "git@github.com:Jake-Pullen/"] [url "git@github.com:Jake-Pullen/"]
insteadOf = "JP:" insteadOf = "JP:"
[maintenance]
repo = /home/devin/dotfiles
[fetch] [fetch]
prune = true prune = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[safe] [safe]
directory = /mnt/nas/hosted_git/DnD.git directory = /mnt/nas/hosted_git/DnD.git
directory = /mnt/nas/hosted_git/dungeon_masters_vault.git directory = /mnt/nas/hosted_git/dungeon_masters_vault.git
@@ -3,6 +3,7 @@
pacman_to_add=( pacman_to_add=(
"tree" "tree"
"ttf-fira-code" "ttf-fira-code"
"cronie"
) )
aur_to_add=( aur_to_add=(
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
#
# Copy cron tasks to /usr/local/bin
cp /mnt/nas/Jake/cron_tasks/*.sh /usr/local/bin/
# Restore from your saved file
crontab < /mnt/nas/Jake/cron_tasks/cron_backup
+8 -1
View File
@@ -11,7 +11,8 @@ echo "========================================"
# 1. Add packages (must be first) # 1. Add packages (must be first)
echo "[1/4] Installing packages..." echo "[1/4] Installing packages..."
./omarchy_start.sh ./omarchy_package_install.sh
# 2. Set up symbolic links # 2. Set up symbolic links
echo "" echo ""
@@ -33,6 +34,12 @@ echo " - Restoring SSH and GPG keys..."
echo " - Restoring Git backups..." echo " - Restoring Git backups..."
./restore_git_backup.sh ./restore_git_backup.sh
echo " - Restoring cron jobs..."
./restore_cron_jobs.sh
echo " - Enabling services..."
sudo systemctl enable --now cronie.service
echo "" echo ""
echo "========================================" echo "========================================"
echo " Omarchy Setup Complete!" echo " Omarchy Setup Complete!"