Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Submodule Update]: Bump submodules/dotfiles from 192ea50 to 8c73b8f #102

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ Entries under the **Removed** section indicate items removed from the entire doc

## Unreleased

## 2024-12-20

### Fixed

- fixed(.zshrc): fix spelling problems

### Added

- added(aliases): add `update-grub-config` to `updatepacman` alias

## 2024-12-02

### Added
Expand Down
4 changes: 2 additions & 2 deletions includes/zshrc-files/zshrc-linux-snippet.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ hash xdg-open 2>/dev/null && alias open="xdg-open"

## Update based aliases.
alias updateapt="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean"
alias updatepacman="sudo pacman -Syu && yay && yay -Yc"
alias updatepacman="sudo pacman -Syu && yay && yay -Yc && update-grub-config"

## Systemd aliases.
alias start-bluetooth="sudo systemctl start bluetooth.service"
Expand All @@ -30,7 +30,7 @@ alias stop-firewalld="sudo systemctl stop firewalld.service"
### Due to the number of commands that I find to be useful, I've created aliases
### containing some of these commands. They are specifically commands that I don't
### often use, but are useful to have on hand. Having these aliases allows me to see
### a list of these commands, without having to commit them to memeory.
### a list of these commands, without having to commit them to memory.
###

alias lt="echo -e \"
Expand Down
4 changes: 2 additions & 2 deletions includes/zshrc-files/zshrc-linux.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ hash xdg-open 2>/dev/null && alias open="xdg-open"

## Update based aliases.
alias updateapt="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean"
alias updatepacman="sudo pacman -Syu && yay && yay -Yc"
alias updatepacman="sudo pacman -Syu && yay && yay -Yc && update-grub-config"

## Systemd aliases.
alias start-bluetooth="sudo systemctl start bluetooth.service"
Expand All @@ -95,7 +95,7 @@ alias stop-firewalld="sudo systemctl stop firewalld.service"
### Due to the number of commands that I find to be useful, I've created aliases
### containing some of these commands. They are specifically commands that I don't
### often use, but are useful to have on hand. Having these aliases allows me to see
### a list of these commands, without having to commit them to memeory.
### a list of these commands, without having to commit them to memory.
###

alias lt="echo -e \"
Expand Down
2 changes: 1 addition & 1 deletion includes/zshrc-files/zshrc-macos-snippet.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup
### Due to the number of commands that I find to be useful, I've created aliases
### containing some of these commands. They are specifically commands that I don't
### often use, but are useful to have on hand. Having these aliases allows me to see
### a list of these commands, without having to commit them to memeory.
### a list of these commands, without having to commit them to memory.
###

alias lt="echo -e \"
Expand Down
2 changes: 1 addition & 1 deletion includes/zshrc-files/zshrc-macos.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup
### Due to the number of commands that I find to be useful, I've created aliases
### containing some of these commands. They are specifically commands that I don't
### often use, but are useful to have on hand. Having these aliases allows me to see
### a list of these commands, without having to commit them to memeory.
### a list of these commands, without having to commit them to memory.
###

alias lt="echo -e \"
Expand Down
2 changes: 1 addition & 1 deletion submodules/dotfiles