Bitter is a collection of bash scripts that help developers execute tasks, which are part of their daily workflow directly from commandline. Some bash scripts are compatible with Raycast. Appropriate Raycast comments are present in compatible scripts.
Simply make a clone of the repository
git clone git@github.com:RishabJaiswal/bitter.git
- Add
PATH
tobitter
tools in your bash config file;.zshrc
|.bashrc
, etc.
In your .zshrc file add the following lines
#adding custom scripts
export PATH="<PATH-TO-REPOSITORY>/git:$PATH"
export PATH="<PATH-TO-REPOSITORY>/utility:$PATH"
export PATH="<PATH-TO-REPOSITORY>/communication:$PATH"
export PATH="<PATH-TO-REPOSITORY>/android:$PATH"
- Start a new terminal instance or reload your terminal by running
source ~/.zshrc
- Now, the Bitter tools are loaded in your terminal instance.
Some Bitter tools are compatible with Raycast. To add Bitter tools in your Raycast, follow these steps
-
Open Raycast Preferences.
-
Add the subdirectories in the
bitter
repository asScript Commands
as shown in image -
Bitter
tools are now available in your Raycast
Some bitter
tools require personal information to execute.
For eg; setting Slack status as away
require a personal access token.
To personalise bitter
, it is recommended to check out a branch from main
&
add your needed personal information.
You can rebase your personalised branch on an updated main
to fetch the latest features.
Note: DO NOT publish your tokens to any public platform like Github
, etc.
To use Slack tools, check how to get Slack personal access token.