Giter VIP home page Giter VIP logo

spwd's Introduction

SPWD

Description

"spwd" (short for "Short Present Working Directory") is a program for presenting the current working directory within the width of the terminal. This can be used in the shell prompts, like bash, zsh, fish, etc. to maintain their beautiful appearance

Usage

spwd
# This will just output the current working directory within the width of the terminal
# The symbols "/.../" will be used for the cutting the part of the path
spwd <width>
# Replace <width> with any integer to explicitly specify the maximum allowable output length

Example

Two-line zsh prompt

get_available_width() { expr $(tput cols) - ${#USER} - ${#HOST} - 10; }
PROMPT=$'%F{blue}┌──($USER@$HOST)-[%F{white}$(spwd $(get_available_width))%F{blue}]\n└─$suffix%f '
One-line zsh prompt

get_available_width() { expr \( $(tput cols) - ${#USER} - ${#HOST} - 10 \) / 2; }
PROMPT=$'%F{blue}($USER@$HOST)-[%F{white}$(spwd $(get_available_width))%F{blue}] $suffix%f '

Installation

Manual

To install the program, just copy the code and paste it into the terminal

git clone https://github.com/Andrew-Flame/spwd.git /tmp/spwd
cd /tmp/spwd && sudo make clean install

AUR

You can find this package by link

pacaur -S spwd

spwd's People

Contributors

andrew-flame avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.