Skip to content

Commit

Permalink
Merge pull request #126 from StrangeRanger/dependabot/submodules/subm…
Browse files Browse the repository at this point in the history
…odules/dotfiles-7a9a916

[Submodule Update]: Bump submodules/dotfiles from `0dcbc74` to `7a9a916`
  • Loading branch information
StrangeRanger authored Feb 7, 2025
2 parents fae5224 + bccb21d commit 551a00b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ Entries under the **Removed** section indicate items removed from the entire doc

## Unreleased

## 2025-02-07

### Changed

- changed(alias): include 'docker.socket' when stopping 'docker.service'
- changed(alias): update docker alias to include 'containerd.servic'

### Added

- added(PATH): add path to ruby 3.3.0 gems

## 2025-02-04

### Changed
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 @@ -24,8 +24,8 @@ alias start-vmware-networking="sudo systemctl start vmware-networks.service"
alias stop-vmware-networking="sudo systemctl stop vmware-networks.service"
alias start-firewalld="sudo systemctl start firewalld.service"
alias stop-firewalld="sudo systemctl stop firewalld.service"
alias start-docker="sudo systemctl start docker.service"
alias stop-docker="sudo systemctl stop docker.service"
alias start-docker="sudo systemctl start docker.service containerd.service"
alias stop-docker="sudo systemctl stop docker.socket docker.service containerd.service"

###
### [ Group 2 ]
Expand Down
15 changes: 9 additions & 6 deletions includes/zshrc-files/zshrc-linux.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ alias start-vmware-networking="sudo systemctl start vmware-networks.service"
alias stop-vmware-networking="sudo systemctl stop vmware-networks.service"
alias start-firewalld="sudo systemctl start firewalld.service"
alias stop-firewalld="sudo systemctl stop firewalld.service"
alias start-docker="sudo systemctl start docker.service"
alias stop-docker="sudo systemctl stop docker.service"
alias start-docker="sudo systemctl start docker.service containerd.service"
alias stop-docker="sudo systemctl stop docker.socket docker.service containerd.service"

###
### [ Group 2 ]
Expand Down Expand Up @@ -143,10 +143,13 @@ git open - Opens the GitHub page for a repo/branch in your browser.


## Path purpose:
## $HOME/.local/bin: User installed binaries.
## $HOME/.dotnet/tools: .NET Core tools.
## /opt/nvim/bin: Neovim binary.
export PATH="$HOME/.local/bin:$PATH:$HOME/.dotnet/tools"
## - $HOME/.local/bin:User installed binaries.
## - $HOME/.dotnet/tools: .NET Core tools.
## - $HOME/.local/share/gem/ruby/3.3.0/bin: Ruby gems.
## - /opt/nvim/bin: Neovim binary.
export PATH="$HOME/.local/bin:$PATH"
[[ -d $HOME/.dotnet/tools ]] && export PATH="$HOME/.dotnet/tools:$PATH"
[[ -d $HOME/.local/share/gem/ruby/3.3.0/bin ]] && export PATH="$HOME/.local/share/gem/ruby/3.3.0/bin:$PATH"
[[ -d /opt/nvim/bin ]] && export PATH="/opt/nvim/bin:$PATH"

# Modifies the colors of files and directories in the terminal.
Expand Down
2 changes: 1 addition & 1 deletion submodules/dotfiles
Submodule dotfiles updated 1 files
+9 −6 .zshrc_linux.tmpl

0 comments on commit 551a00b

Please sign in to comment.