Skip to content

Commit

Permalink
skel: bash_aliases: gss: don't show repositories with status ok
Browse files Browse the repository at this point in the history
  • Loading branch information
nodiscc committed Feb 6, 2024
1 parent d373a07 commit d184626
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Changed
- network: install keepassxc-browser Firefox extension from official Debian package
- firefox: user.js: enable WebRender by default for better performance
- skel: bash_aliases: gss: don't show repositories with status ok

---------------------

Expand Down
2 changes: 1 addition & 1 deletion config/includes.chroot/etc/skel/.bash_aliases
Expand Up @@ -11,7 +11,7 @@ alias chx='chmod a+x' # set execute permission
alias clipboard='xclip -selection c; notify-send --icon=gtk-paste "Copied to clipboard." 2>/dev/null' # send stdin to clipboard
function f { find ./ -name "*$1*"; } # find files in the currect directory
function psg { ps -fp $(pgrep -f "$@"); } # find running process matching a name
alias gss='mgitstatus -f --depth=1 ~/GIT' # show uncommitted/untracked/unpushed changes in Git repos under ~/GIT
alias gss='mgitstatus --flatten --no-ok --depth=1 ~/GIT' # show uncommitted/untracked/unpushed changes in Git repos under ~/GIT
# alias rm="trash-put" # do not delete files with rm, put them to trash
# alias frm="\rm" # add an alias for rm
# alias mkdir='mkdir -pv' # create directories and their parents by default
Expand Down

0 comments on commit d184626

Please sign in to comment.