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

suggest xdg-utils to install *.desktop #11066

Open
wants to merge 3 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
5 changes: 3 additions & 2 deletions book/src/building-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,9 @@ you can configure Helix to show up in the application menu by copying the
provided `.desktop` and icon files to their correct folders:

```sh
cp contrib/Helix.desktop ~/.local/share/applications
cp contrib/helix.png ~/.icons # or ~/.local/share/icons
cp contrib/Helix.desktop -- "$HOME/.local/share/applications"
Rudxain marked this conversation as resolved.
Show resolved Hide resolved
cp contrib/helix.png -- "$HOME/.icons" # or "$HOME/.local/share/icons"
#xdg-icon-resource install --novendor --size 256 contrib/helix.png
```

To use another terminal than the system default, you can modify the `.desktop`
Expand Down
Loading