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

Update readme, install via source #63

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,20 @@ Install these **required** dependencies:
- xclip, xsel, or wl-clipboard
- xdotool or ydotool

Then download the script file and place it somewhere on your `$PATH` and grant it
Then download the script files and place them somewhere on your `$PATH` and grant them
the `+x` permission.

```bash
# Install for all users
sudo install -D --mode=755 --group=root --owner=root bwmenu /usr/local/bin/bwmenu
sudo install -D --mode=755 --group=root --owner=root bwmenu /usr/local/bin/bwmenu && \
sudo install -D --mode=755 --group=root --owner=root lib-bwmenu /usr/local/bin/lib-bwmenu

# Install for yourself
mkdir -p ~/.local/bin && \
cp bwmenu ~/.local/bin/bwmenu && \
chmod +x ~/.local/bin/bwmenu
chmod +x ~/.local/bin/bwmenu && \
cp lib-bwmenu ~/.local/bin/lib-bwmenu && \
chmod +x ~/.local/bin/lib-bwmenu
```

## Hall of Fame
Expand Down