diff --git a/Pipfile b/Pipfile index 512d1eb..93deff2 100644 --- a/Pipfile +++ b/Pipfile @@ -5,7 +5,7 @@ name = "pypi" [packages] mkdocs-git-revision-date-localized-plugin = "==1.3.0" -mkdocs-material = "==9.5.45" +mkdocs-material = "==9.5.47" mkdocs-table-reader-plugin = "==3.1.0" [dev-packages] diff --git a/Pipfile.lock b/Pipfile.lock index fbd1455..b175184 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "26c5b9f78efd5b7d7bed5069069c8ada3294109d756b9ab62011de6fbf2efc2b" + "sha256": "13ed861d13603001596daba502bb992693f8fd17fde22c84b2172292871df261" }, "pipfile-spec": 6, "requires": { @@ -308,12 +308,12 @@ }, "mkdocs-material": { "hashes": [ - "sha256:286489cf0beca4a129d91d59d6417419c63bceed1ce5cd0ec1fc7e1ebffb8189", - "sha256:a9be237cfd0be14be75f40f1726d83aa3a81ce44808dc3594d47a7a592f44547" + "sha256:53fb9c9624e7865da6ec807d116cd7be24b3cb36ab31b1d1d1a9af58c56009a2", + "sha256:fc3b7a8e00ad896660bd3a5cc12ca0cb28bdc2bcbe2a946b5714c23ac91b0ede" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==9.5.45" + "version": "==9.5.47" }, "mkdocs-material-extensions": { "hashes": [ @@ -493,7 +493,7 @@ "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, "pytz": { @@ -683,7 +683,7 @@ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "smmap": { diff --git a/includes/zshrc-files/zshrc-linux-snippet.zsh b/includes/zshrc-files/zshrc-linux-snippet.zsh index 91b869d..b0ec2bb 100644 --- a/includes/zshrc-files/zshrc-linux-snippet.zsh +++ b/includes/zshrc-files/zshrc-linux-snippet.zsh @@ -9,15 +9,19 @@ ## General aliases. alias zls="eza" alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +" -alias rm="trash" # Used to prevent accidental and permanent deletion of files. -alias rrm="rm" # Stands for 'real rm'. -alias grub-conf="sudo grub-mkconfig -o /boot/grub/grub.cfg" +alias update-grub-config="sudo grub-mkconfig -o /boot/grub/grub.cfg" 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" +## Systemd aliases. +alias start-bluetooth="sudo systemctl start bluetooth.service" +alias stop-bluetooth="sudo systemctl stop bluetooth.service" +alias start-vmware-networking="sudo systemctl start vmware-networks.service" +alias stop-vmware-networking="sudo systemctl stop vmware-networks.service" + ### ### [ Group 2 ] ### diff --git a/includes/zshrc-files/zshrc-linux.zsh b/includes/zshrc-files/zshrc-linux.zsh index 67ad69a..13e18f1 100644 --- a/includes/zshrc-files/zshrc-linux.zsh +++ b/includes/zshrc-files/zshrc-linux.zsh @@ -74,15 +74,19 @@ source "$ZSH/oh-my-zsh.sh" ## General aliases. alias zls="eza" alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +" -alias rm="trash" # Used to prevent accidental and permanent deletion of files. -alias rrm="rm" # Stands for 'real rm'. -alias grub-conf="sudo grub-mkconfig -o /boot/grub/grub.cfg" +alias update-grub-config="sudo grub-mkconfig -o /boot/grub/grub.cfg" 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" +## Systemd aliases. +alias start-bluetooth="sudo systemctl start bluetooth.service" +alias stop-bluetooth="sudo systemctl stop bluetooth.service" +alias start-vmware-networking="sudo systemctl start vmware-networks.service" +alias stop-vmware-networking="sudo systemctl stop vmware-networks.service" + ### ### [ Group 2 ] ### diff --git a/includes/zshrc-files/zshrc-macos-snippet.zsh b/includes/zshrc-files/zshrc-macos-snippet.zsh index cdfbb14..702003e 100644 --- a/includes/zshrc-files/zshrc-macos-snippet.zsh +++ b/includes/zshrc-files/zshrc-macos-snippet.zsh @@ -14,8 +14,6 @@ alias rmdsstore="find . -name '*.DS_Store' -type f -delete" alias code="open -a 'Visual Studio Code.app' ." alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +" alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup && brew doctor" -alias rm="trash" # Used to prevent accidental and permanent deletion of files. -alias rrm="rm" # Stands for 'real rm'. ### ### [ Group 2 ] diff --git a/includes/zshrc-files/zshrc-macos.zsh b/includes/zshrc-files/zshrc-macos.zsh index c52561c..68c3c05 100644 --- a/includes/zshrc-files/zshrc-macos.zsh +++ b/includes/zshrc-files/zshrc-macos.zsh @@ -79,8 +79,6 @@ alias rmdsstore="find . -name '*.DS_Store' -type f -delete" alias code="open -a 'Visual Studio Code.app' ." alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +" alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup && brew doctor" -alias rm="trash" # Used to prevent accidental and permanent deletion of files. -alias rrm="rm" # Stands for 'real rm'. ### ### [ Group 2 ] diff --git a/submodules/dotfiles b/submodules/dotfiles index 891dfed..b07ef80 160000 --- a/submodules/dotfiles +++ b/submodules/dotfiles @@ -1 +1 @@ -Subproject commit 891dfeda1afb69de51296af6e17e56cdf9809423 +Subproject commit b07ef804462deb9da1a3c5a27a3e0c72d4bf47d1