Skip to content

Commit

Permalink
Version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mateussouzaweb committed Oct 13, 2023
1 parent 7bb5b27 commit 726bee9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,27 @@ Please not that NiceDeck will not offer support for all emulation softwares out

# Using NiceDeck Outside Steam Deck

You can run NiceDeck in any Linux distribuition that supports ``flatpak`` with [Flathub](https://flathub.org), just make sure to **install and setup Steam first** in order to have the necessary folders of Steam in your system. If you just happen to install Steam via flatpak too, don't worry, ``nicedeck`` will set the necessary settings required to bypass the sandbox limitations of flatpak inside Steam.
You can run NiceDeck in any Linux distribuition that supports ``flatpak`` with [Flathub](https://flathub.org), just make sure to **install and setup Steam first** in order to have the necessary folders of Steam in your system.

If you just happen to install Steam via flatpak too, don't worry, ``nicedeck`` will set the necessary settings required to bypass the sandbox limitations of flatpak inside Steam.

## Fix Desktop

```bash
cp /var/lib/flatpak/exports/share/applications/org.yuzu_emu.yuzu.desktop $HOME/.local/share/applications/org.yuzu_emu.yuzu.desktop
cp /var/lib/flatpak/exports/share/applications/app.xemu.xemu.desktop $HOME/.local/share/applications/app.xemu.xemu.desktop
cp /var/lib/flatpak/exports/share/applications/io.mgba.mGBA.desktop $HOME/.local/share/applications/io.mgba.mGBA.desktop
cp /var/lib/flatpak/exports/share/applications/net.kuribo64.melonDS.desktop $HOME/.local/share/applications/net.kuribo64.melonDS.desktop

vim $HOME/.local/share/applications/org.yuzu_emu.yuzu.desktop
vim $HOME/.local/share/applications/app.xemu.xemu.desktop
vim $HOME/.local/share/applications/io.mgba.mGBA.desktop
vim $HOME/.local/share/applications/net.kuribo64.melonDS.desktop
```

## Ideas

- Hotkeys or menu on Steam controller
- Make categories work on Steam
- Better tabs for Steam
- Check if we can modify the HTML of Steam
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var installMap = map[string]func() error{

// Version command
func printVersion() error {
cli.Printf(cli.ColorDefault, "Version 0.0.6\n")
cli.Printf(cli.ColorDefault, "Version 0.0.7\n")
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -u

VERSION="v0.0.6"
VERSION="v0.0.7"
REPOSITORY="https://github.com/mateussouzaweb/nicedeck"
BINARY="$REPOSITORY/releases/download/$VERSION/nicedeck"
BINARIES="$HOME/.local/bin"
Expand Down

0 comments on commit 726bee9

Please sign in to comment.