Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/Senderman/doas-zsh-plugin

Simple zsh plugin to insert doas by pressing double-ESC (forked from OMZ's sudo plugin)
https://github.com/Senderman/doas-zsh-plugin

Last synced: about 1 month ago
JSON representation

Simple zsh plugin to insert doas by pressing double-ESC (forked from OMZ's sudo plugin)

Lists

README

        

# doas-zsh-plugin

Easily prefix your current or previous commands with `doas` by pressing esc twice

This is fork of [OMZ's sudo plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/sudo).

# Installation

Use [Antidote](https://getantidote.github.io/)

Add the following line to your plugins file:

```Senderman/doas-zsh-plugin```

## Usage

### Current typed commands

Say you have typed a long command and forgot to add `doas` in front:

```console
$ apt-get install build-essential
```

By pressing the esc key twice, you will have the same command with `doas` prefixed without typing:

```console
$ doas apt-get install build-essential
```

### Previous executed commands

Say you want to delete a system file and denied:

```console
$ rm some-system-file.txt
-su: some-system-file.txt: Permission denied
$
```

By pressing the esc key twice, you will have the same command with `doas` prefixed without typing:

```console
$ rm some-system-file.txt
-su: some-system-file.txt: Permission denied
$ doas rm some-system-file.txt
Password:
$
```

### doas is already in the beginning of the line

Say you already have doas in the beginning of the line:

```console
$ doas ls
```

To remove it, press esc key twice:

```console
$ ls
```