~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.config/nnn/plugins/gitroot -rwxr-xr-x 365 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env sh

# Description: cd to the top level of the current git repository in the current context
# Dependencies: git
# Shell: sh
# Author: https://github.com/PatrickF1

root="$(git rev-parse --show-toplevel 2>/dev/null)"
if [ -n "$root" ]; then
    printf "%s" "0c$root" > "$NNN_PIPE"
else
    printf "Not in a git repository"
    read -r _
    exit 1
fi