Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zsh-magic-dashboard/README.md at main · chrisgrieser/zsh-magic-dashboard #740

Open
1 task
irthomasthomas opened this issue Mar 16, 2024 · 1 comment
Open
1 task
Labels
CLI-UX Command Line Interface user experience and best practices Git-Repo Source code repository like gitlab or gh shell-script shell scripting in Bash, ZSH, POSIX etc

Comments

@irthomasthomas
Copy link
Owner

zsh-magic-dashboard/README.md at main · chrisgrieser/zsh-magic-dashboard

zsh-magic-dashboard

Pressing enter on an empty buffer displays an information-rich and pretty dashboard.

Showcase

Terminal: WezTerm – Theme: Tinacious Design – Font: Iosevka Term with partial ligatures – Prompt: Starship

  • Top: Recent commits (git log)
  • Center: Current Status (hybrid of git status and git diff --stat)
  • Bottom: Files in the current directory (via eza)

Empty components, such as git status in a clean repo, are automatically hidden.

Table of Contents

Installation

Requirements

Manual

Clone this repository somewhere on your machine. This manual assumes you are using ~/.zsh/.

cd ~/.zsh # where to install the plugin
git clone https://github.com/chrisgrieser/zsh-magic-dashboard

Add the following to your ~/.zshrc:

source ~/.zsh/zsh-magic-dashboard/magic_dashboard.zsh

Package Managers

I don't use a package manager, since they are mostly unnecessary and even increasing zsh loading time considerably.

I am open to pull requests adding instructions for package managers, though.

Configuration

Export these variables in your ~/.zshrc. The values displayed are the default.

# Size of the dashboard
export MAGIC_DASHBOARD_GITLOG_LINES=5
export MAGIC_DASHBOARD_FILES_LINES=6

# Disable dashboard in low terminal windows. 
# (Useful for tmux or for terminals embedded in your IDE.)
export MAGIC_DASHBOARD_DISABLED_BELOW_TERM_HEIGHT=15

# Make commit hashes & files clickable. Requires `git-delta`.
export MAGIC_DASHBOARD_USE_HYPERLINKS=0 # set to `1` to enable

Usage

Just press enter on an empty buffer. That's it!

Other Usages

The dashboard call also be called via _magic_dashboard. One use case would be to modify your cd command to display the dashboard after the directory change.

function cd {
	builtin cd "$@" && _magic_dashboard
}

The pretty git log is available independently via _gitlog and accepts the same arguments as git log, for example:

# display the last ten log entry
_gitlog -n10

# call via git's core.pager, like git log
_gitlog
alias gl='_gitlog'

# Can also be piped to `fzf`. (Use the _gitlog-specific option `--no-graph` to disable the graph, which messes up a lot of fzf-related things.)
selected_hash=$(_gitlog --no-graph | fzf --ansi --no-sort | cut -d' ' -f1)

Credits

This plugin is based on Magic Enter by @dufferzafar.

About me
In my day job, I am a sociologist studying the social mechanisms underlying the digital economy. For my PhD project, I investigate the governance of the app economy and how software ecosystems manage the tension between innovation and compatibility. If you are interested in this subject, feel free to get in touch.

Profiles

Buy Me a Coffee at ko-fi.com

URL: zsh-magic-dashboard

Suggested labels

@irthomasthomas irthomasthomas added CLI-UX Command Line Interface user experience and best practices Git-Repo Source code repository like gitlab or gh shell-script shell scripting in Bash, ZSH, POSIX etc labels Mar 16, 2024
@irthomasthomas
Copy link
Owner Author

Related content

#701

Similarity score: 0.89

#678

Similarity score: 0.86

#65

Similarity score: 0.86

#625

Similarity score: 0.86

#45

Similarity score: 0.86

#114

Similarity score: 0.85

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLI-UX Command Line Interface user experience and best practices Git-Repo Source code repository like gitlab or gh shell-script shell scripting in Bash, ZSH, POSIX etc
Projects
None yet
Development

No branches or pull requests

1 participant