Go to file
Hecos1 af13eb3891
Add vesktop(alternative discord app) to chats.rules (#82)
Vesktop is a custom Discord desktop app
2024-04-06 10:19:10 +02:00
00-default Add vesktop(alternative discord app) to chats.rules (#82) 2024-04-06 10:19:10 +02:00
00-cgroups.cgroups fixup! 2022-10-01 23:26:53 +02:00
00-types.types remove compiler processes to avoid freezes with BORE Scheduler 2024-02-25 10:40:25 +01:00
LICENSE Create LICENSE 2023-09-29 08:08:51 +02:00
README.md Fix links for README's example rules 2023-11-06 20:38:15 +00:00
ananicy.conf ♻ Sync config with ananicy-cpp (#65) 2023-10-23 10:26:12 +04:00

README.md

Ananicy-cpp-rules for CachyOS

This is a ananicy-cpp-rules collection for ananicy-cpp maintained by the CachyOS team.

Ananicy-cpp & ananicy-cpp-rules

  • ananicy-cpp - daemon that automatically adjusts the nice levels of processes.
  • ananicy-cpp-rules - list of rules used to assign specific nice values to specific processes.

The nice value determines the priority of a process, with higher values indicating lower priority and making the process "nicer" to other processes. By default, on Linux workstations, the nice value is set to 0.

How to contribute

You can add your favorite games, apps, and more. Any help would be greatly appreciated!
For example, let's say you want to add a game.

  1. Go to 00-default
  2. Go to games
  3. Create a new file with the same name as your game, for example, gamename.rules

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://store.steampowered.com/app/8190
{ "name": "JustCause2.exe", "type": "Game" }

2. Example rules for The Outer Worlds

# https://store.steampowered.com/app/578650
{ "name": "Indiana-Win64-Shipping.exe", "type": "Game"}
{ "name": "TheOuterWorlds.exe", "type": "Game"}

How to find out proper process name?

Here is a list of tools

CLI

GUI

GameMode + ananicy-cpp = bad idea

GameMode and ananicy-cpp both adjust the nice levels of processes. However, combining both tools is not recommended, and we strongly advise against doing so.