-
Notifications
You must be signed in to change notification settings - Fork 282
Getting Started
github-actions edited this page May 8, 2023
·
24 revisions
Onefetch is installed, then what?
> onefetch /path/of/your/repo
Or
> cd /path/of/your/repo
> onefetch
# Runs `onefetch -a Assembly`, `onefetch -a C`, etc.
onefetch -l | tr "[:upper:] " "[:lower:]-" | while read line; do echo "$line"; onefetch -a $line; done;
A script to put in your .bashrc
- or .zshrc
- to run onefetch whenever you open a shell into a repository or cd
into a repository, making sure that it's different from the last one you were in:
# git repository greeter
last_repository=
check_directory_for_new_repository() {
current_repository=$(git rev-parse --show-toplevel 2> /dev/null)
if [ "$current_repository" ] && \
[ "$current_repository" != "$last_repository" ]; then
onefetch
fi
last_repository=$current_repository
}
cd() {
builtin cd "$@"
check_directory_for_new_repository
}
# optional, greet also when opening shell directly in repository directory
# adds time to startup
check_directory_for_new_repository
By @TheSast
A fish adaptation of the previous script, run it once in your shell to save it:
function cd -w='cd'
builtin cd $argv || return
check_directory_for_new_repository
end
function check_directory_for_new_repository
set current_repository (git rev-parse --show-toplevel 2> /dev/null)
if [ "$current_repository" ] && \
[ "$current_repository" != "$last_repository" ]
onefetch
end
set -gx last_repository $current_repository
end
funcsave cd
funcsave check_directory_for_new_repository
By @mataha
An adaptation of the above snippet suited for Windows's cmd.exe
,
specifically for inclusion in AutoRun
or DOSKEY scripts:
@set LAST_REPOSITORY=
@doskey cd = @(if "$*"=="" (chdir /d "%%USERPROFILE%%") else (chdir /d $*)) ^&^& (for /f "usebackq tokens=* delims=" %%i in (`"git rev-parse --show-toplevel 2$Gnul"`) do @(if not "%%~i"=="" if not "%%~i"=="%%LAST_REPOSITORY%%" (onefetch ^& set "LAST_REPOSITORY=%%~i")))
By @mbrehin
# Add Git alias for onefetch.
git config --global alias.project-summary '!which onefetch && onefetch'