Adding a Wine `.lnk` Program to Rofi

Questions about Wine on Linux
Locked
psygo
Level 2
Level 2
Posts: 20
Joined: Tue Aug 30, 2022 8:24 am

Adding a Wine `.lnk` Program to Rofi

Post by psygo »

I had originall asked this on the Unix & Linux Stack Exchange: https://unix.stackexchange.com/q/784800/364698

I was able to add a program ([KaTrain](https://github.com/sanderland/katrain)) — which I installed with `pipx` — to Rofi, following [this nice answer](https://unix.stackexchange.com/a/651744/364698):

```desktop
[Desktop Entry]
Exec=/home/phili/.local/bin/katrain
Type=Application
Categories=Go
Name=KaTrain
```

But now, I'm trying ot add another program ([Fox Weiqi](https://www.foxwq.com/soft/foreign.html)), which I was only able to install via Wine.

```desktop
[Desktop Entry]
Exec="wine /home/phili/Other\ Software/Fox\ Weiqi/Fox\ Go\ Server.lnk"
Type=Application
Categories=Go
Name=Fox Weiqi
```

If I use that Wine command on a terminal, it does work. (I'm using Archcraft.)
psygo
Level 2
Level 2
Posts: 20
Joined: Tue Aug 30, 2022 8:24 am

Re: Adding a Wine `.lnk` Program to Rofi

Post by psygo »

Locked