added rules to hyprctl devices and fixed rules

This commit is contained in:
vaxerski
2022-07-08 12:27:05 +02:00
parent 491b99c61e
commit 92e17f2925
3 changed files with 21 additions and 5 deletions

View File

@@ -69,6 +69,14 @@ struct SRenderData {
bool blur = false;
};
struct SStringRuleNames {
std::string layout = "";
std::string model = "";
std::string variant = "";
std::string options = "";
std::string rules = "";
};
struct SKeyboard {
wlr_input_device* keyboard;
@@ -80,7 +88,7 @@ struct SKeyboard {
std::string name = "";
xkb_rule_names currentRules = {0};
SStringRuleNames currentRules;
int repeatRate = 0;
int repeatDelay = 0;
int numlockOn = -1;