This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # My config for https://starship.rs/ | |
| # It's minimalistic, I like single-line prompts, features: | |
| # - show active python version when non-system python is on PATH | |
| # - show duration only when last command took more than 5s | |
| format="$cmd_duration$custom$directory$character" | |
| add_newline = false | |
| [directory] | |
| format = "[$path]($style)[$read_only]($read_only_style)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # See https://gist.github.com/zsimic/c39dd9686c6d6b0d149a67ff23286b99 for docs on how to use | |
| # Note: you can invoke with LOGFILE= for troubleshooting | |
| [ -z "$LOGFILE" ] && LOGFILE=/var/log/messages | |
| if [ -z "$1" -a -f $LOGFILE ]; then # Pass any command line arg to avoid the logging redirect | |
| exec $0 run 1>> $LOGFILE 2>&1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Non staggered, compact", | |
| "author": "Zoran Simic" | |
| }, | |
| [ | |
| "Esc", | |
| { | |
| "x": 0.5 | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Compact, staggered", | |
| "author": "Zoran Simic" | |
| }, | |
| [ | |
| { | |
| "c": "#768e72" | |
| }, | |
| "Esc", |
OlderNewer