|
3 years ago | |
---|---|---|
LICENSE | 3 years ago | |
README.md | 3 years ago | |
launch.plugin.zsh | 3 years ago |
README.md
launch Plugin for ZSH
This plugin adds the command launch
which allows launching applications from cli without further distraction.
But why not directly call the application?
- Because you do not want to see the (error) output of the application
- Because you would like to use your shell while the application is still running
- Because the application should be still running after exiting the shell
launch
is an simple alias (but not built-in alias) to launch the given application
while redirecting STDOUT and STDERR to /dev/null
and forking the process to the init
process,
so your shell and the new process run independently from one another.
It is literally the same as APPLICATION >/dev/null 2>&1 &!
but way faster to type.
Repository clones
The original repository will be stored on GitHub. You can use the original reopsitory if you want to use GitHub. Also issues and pull requests will be collected there for convenience.
This repository will be cloned to my own server. You can use the clone instead of this repository if you want to avoid use GitHub.
Installation
zsh (without plugin support)
- Clone project
- Add following line to your
.zshrc
:
SOURCE "path/to/repo/launch.plugin.zsh"
oh-my-zsh
- Clone project into
~/.oh-my-zsh/custom/plugins/launch
- Add
launch
to your plugin list
plugins=(… launch …)
Antigen
- Add following line to your
.zshrc
:
antigen bundle Zocker1999NET/zsh-launch # GitHub if default repository unchanged
antigen bundle https://git.banananet.work/zsh-plugins/launch # Own Server
or
- Add the repository to your plugin list
antigen bundles <<EOBUNDLES
…
Zocker1999NET/zsh-launch # GitHub if default repository unchanged
https://git.banananet.work/zsh-plugins/launch # Own Server
…
EOBUNDLES
Antibody
- Add following line to your
.zshrc
:
antibody bundle Zocker1999NET/zsh-launch # GitHub if default repository unchanged
antibody bundle https://git.banananet.work/zsh-plugins/launch # Own Server
or
- Add the repository to your plugin list
antibody bundles <<EOBUNDLES
…
Zocker1999NET/zsh-launch # GitHub if default repository unchanged
https://git.banananet.work/zsh-plugins/launch # Own Server
…
EOBUNDLES
Usage
Prefix the command you want to launch with launch
,
e.g. launch okular my_document.pdf
or launch firefox
.
License
This plugin is licensed under WTFPL. Do the fuck you want to with this plugin, but please contribute to this plugin if you have made any improvements which could be useful for others.
Contribute
If you find any issue, report it or fix it yourself and create a pull request.