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

Dead Cells and Needy Streamer #97

Merged
merged 3 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions 00-default/games/steam-native.rules
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@
# https://store.steampowered.com/app/322330/Dont_Starve_Together/
{ "name": "dontstarve_steam", "type": "Game" }

# https://store.steampowered.com/app/588650/Dead_Cells/
{ "name": "deadcells", "type": "Game" }
{ "name": "deadcells.sh", "type": "BG_CPUIO" }

### E ###

# https://store.steampowered.com/app/311690/Enter_the_Gungeon/
Expand Down
3 changes: 3 additions & 0 deletions 00-default/games/wine_proton.rules
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,9 @@
# https://store.steampowered.com/app/342200/MechWarrior_Online_Legends/
{ "name": "MWOClient.exe", "type": "Game" }

# https://store.steampowered.com/app/1451940/NEEDY_STREAMER_OVERLOAD/
{ "name": "Windose.exe", "type": "Game" }

### O ###

# https://store.steampowered.com/app/900883/The_Elder_Scrolls_IV_Oblivion_Game_of_the_Year_Edition_Deluxe/
Expand Down
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,24 @@ You can add your favorite games, apps, and more. Any help would be greatly appre
### Examples of rules
The **first example** is simple. In the **second example**, it is different because some games generate multiple processes. In such cases, you need to add all the processes related to the game.

#### 1. [Example rule for Just Cause 2](https://github.com/CachyOS/ananicy-rules/blob/8bfce840ae0db6f99c706c919ac61f3feff79db7/00-default/games/wine_proton.rules#L585)
#### 1. [Example rule for Just Cause 2](https://github.com/CachyOS/ananicy-rules/blob/68a0f5f2d83fefb657ac0db8e0c8848609b319e4/00-default/games/wine_proton.rules#L617)
```
# https://store.steampowered.com/app/8190
# https://store.steampowered.com/app/8190/Just_Cause_2/
{ "name": "JustCause2.exe", "type": "Game" }
```
#### 2. [Example rules for The Outer Worlds](https://github.com/CachyOS/ananicy-rules/blob/8bfce840ae0db6f99c706c919ac61f3feff79db7/00-default/games/wine_proton.rules#L1086)
#### 2. [Example rules for The Outer Worlds](https://github.com/CachyOS/ananicy-rules/blob/68a0f5f2d83fefb657ac0db8e0c8848609b319e4/00-default/games/wine_proton.rules#L1144)
```
# https://store.steampowered.com/app/578650
# The Outer Worlds https://store.steampowered.com/app/578650
{ "name": "Indiana-Win64-Shipping.exe", "type": "Game"}
{ "name": "TheOuterWorlds.exe", "type": "Game"}
```

#### 3. [Example rules for Portal 2 which is Linux native game](https://github.com/CachyOS/ananicy-rules/blob/68a0f5f2d83fefb657ac0db8e0c8848609b319e4/00-default/games/steam-native.rules#L256)
```
# https://store.steampowered.com/app/620/Portal_2/
{ "name": "portal2_linux", "type": "Game" }
```

## How to find out proper process name?
Here is a list of tools
### CLI
Expand Down