From dc2908abdcccbc814f6e702ff572ccd8a6b4eed5 Mon Sep 17 00:00:00 2001 From: "Stephen Ross 2.0" Date: Tue, 1 Jun 2021 16:22:01 -0400 Subject: [PATCH 1/2] fix formatting Update formatting of blank call output to properly linebreak --- desk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desk b/desk index d8b5fb2..279718e 100755 --- a/desk +++ b/desk @@ -195,7 +195,7 @@ cmd_list() { # --no-format: Use ' - ' to separate alias/export/function names from their descriptions cmd_current() { if [ -z "$DESK_ENV" ]; then - printf "No desk activated.\n\n%s" "$(cmd_list)" + printf "No desk activated.\n\n%s\n" "$(cmd_list)" exit 1 fi From 156f030bed19786f957c4df952f4669f9c84fff9 Mon Sep 17 00:00:00 2001 From: Stephen Ross II Date: Thu, 27 Mar 2025 16:26:34 -0400 Subject: [PATCH 2/2] Update Installation Instructions * Update installation instructions to point to the fork while it is not merged to the upstream --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a6eb3c2..fa11637 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # ◲ desk -[![build](https://api.travis-ci.org/jamesob/desk.svg?branch=master)](https://travis-ci.org/jamesob/desk) [![Join the chat at https://gitter.im/jamesob/desk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jamesob/desk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) - Lightweight workspace manager for the shell. Desk makes it easy to flip back and forth between different project contexts in @@ -118,12 +116,12 @@ rendering. Assuming `~/bin` exists and is on the PATH... otherwise, substitute `/usr/local/bin` and add `sudo` as needed. -0. `curl https://raw.githubusercontent.com/jamesob/desk/master/desk > ~/bin/desk` +0. `curl https://raw.githubusercontent.com/stephenross/desk/master/desk > ~/bin/desk` 0. `chmod +x ~/bin/desk` #### With git -0. `git clone git@github.com:jamesob/desk.git && cd desk && sudo make install` +0. `git clone git@github.com:stephenross/desk.git && cd desk && sudo make install` After that, run `desk init` and start adding deskfiles with either `desk edit [deskfile name]` or by manually adding shell scripts into your deskfiles directory (by default `~/.desk/desks/`). @@ -157,17 +155,17 @@ Optionally, use one of the zsh plugin frameworks mentioned below. or 0. `cd ~/.oh-my-zsh/custom/plugins` -0. `git clone git@github.com:jamesob/desk.git /tmp/desk && cp -r /tmp/desk/shell_plugins/zsh desk` +0. `git clone git@github.com:stephenross/desk.git /tmp/desk && cp -r /tmp/desk/shell_plugins/zsh desk` 0. Add desk to your plugin list #### Using [Antigen](https://github.com/zsh-users/antigen) -0. Add `antigen bundle jamesob/desk shell_plugins/zsh` to your `.zshrc` +0. Add `antigen bundle stephenross/desk shell_plugins/zsh` to your `.zshrc` 0. Open a new terminal window. Antigen will clone the desk repo and add it to your path. #### Using [zgen](https://github.com/tarjoilija/zgen) -0. Add `zgen load jamesob/desk shell_plugins/zsh` to your `.zshrc` with your other load commands +0. Add `zgen load stephenross/desk shell_plugins/zsh` to your `.zshrc` with your other load commands 0. `rm ~/.zgen/init.zsh` 0. Start a new shell; zgen will generate a new `init.zsh` and automatically clone the desk repository for you and add it to your path.