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

📖 DOC: Add alternative function for Linux user who uses GIMP #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ function gimp() {
gcap "👌 IMPROVE: $@"
}

Alternative function for Linux users who use the graphical program GIMP**:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Alternative function for Linux users who use the graphical program GIMP**:
# Alternative for Linux users of GIMP app:

function gim() {
gcap "👌 IMPROVE: $@"
}

# FIX.
function gfix() {
gcap "🐛 FIX: $@"
Expand All @@ -125,13 +130,6 @@ function gtst() {
gcap "✅ TEST: $@"
}
```
For Linux user who use the graphical program GIMP, use this alternative IMPROVE function:
```
function gim() {
gcap "👌 IMPROVE: $@"
}
```

To install these functions for the fish shell, run the following commands:

```sh
Expand All @@ -145,16 +143,13 @@ function gtst; gcap "✅ TEST: $argv"; end;
funcsave gcap
funcsave gnew
funcsave gimp
Alternative function for Linux users for IMPROVE in fish shell:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Alternative function for Linux users for IMPROVE in fish shell:
# Alternative for Linux users of GIMP app:

funcsave gim; gcap "👌 IMPROVE: $argv"; end;
funcsave gfix
funcsave grlz
funcsave gdoc
funcsave gtst
```
Alternative function for Linux users for IMPROVE in fish shell:
```
function gim; gcap "👌 IMPROVE: $argv"; end;
```

If you prefer, you can paste these aliases directly in your `~/.gitconfig` file:

```sh
Expand Down