Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ScienceWolf666/00f1d8cc8b9713761be981e576db6837 to your computer and use it in GitHub Desktop.
Save ScienceWolf666/00f1d8cc8b9713761be981e576db6837 to your computer and use it in GitHub Desktop.
Simple Short Manual | How to install Neofetch and add to terminal startup

πŸ“– | Help Manual - How to install Neofetch and add to Terminal Startup

A | 1/2

🚧 | Install Neofetch and edit config file

  1. INSTALL: sudo apt-get update

  2. INSTALL: sudo apt-get upgrade

  3. INSTALL: sudo apt install neofetch

  4. INSTALL: sudo neofetch

  5. EDIT Neofetch Conf File And Save: locate neofetch | grep conf

print_info() {
    info title
    info underline

    info "OS" distro
    info "Host" model
    info "Kernel" kernel
    info "Uptime" uptime
    info "Packages" packages
    info "Shell" shell
    info "Resolution" resolution
    info "DE" de
    info "WM" wm
    info "WM Theme" wm_theme
    info "Theme" theme
    info "Icons" icons
    info "Terminal" term
    info "Terminal Font" term_font
    info "CPU" cpu
    info "GPU" gpu
    info "Memory" memory

    info "GPU Driver" gpu_driver  # Linux/macOS only
    info "CPU Usage" cpu_usage
    info "Disk" disk
    info "Font" font
    info "Local IP" local_ip
    info "Public IP" public_ip
    info "Users" users
    info "Locale" locale  # This only works on glibc systems.

    info cols
}
  1. Type In Terminal: sudo neofetch

A | 2/2

Add Neofetch To Terminal Startup ( edit system terminal config file )

  • EDIT System Terminal Conf: ls -a ~ and edit file nano ~/.bashrc add to the last line of the file sudo neofetch
  • Type in Terminal: source ~/.bashrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment