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 | |
# Starfetcher | |
# This script uses 'jq', a command-line JSON processor. | |
# Installation instructions: | |
# - On Ubuntu or other Debian-based systems: sudo apt-get install jq | |
# - On CentOS, Fedora, or RHEL: sudo yum install jq | |
# - On macOS: brew install jq | |
# - On Windows, you can download it from https://stedolan.github.io/jq/download/ |
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
# Update 28, Mei 2024 by @luisadha | |
# Enable the subsequent settings only in interactive sessions | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac | |
: "My Custom Path" | |
export PATH="$PATH:~/.local/bin:/system/bin:$HOME/.cargo/bin" | |
: "My Habbit Aliases" |
OlderNewer