From 6ba5edd13ec3e92045547602261ac3ffa89c8dcc Mon Sep 17 00:00:00 2001 From: thinkingwithberries Date: Thu, 23 Jun 2022 18:26:48 +0800 Subject: [PATCH 1/4] Made some settings' comments clearer --- example/hyprland.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/hyprland.conf b/example/hyprland.conf index 931baf49..0f4715a4 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -18,7 +18,7 @@ input { general { max_fps=60 # deprecated, unused - sensitivity=0.25 + sensitivity=0.25 # sensitivity for mouse cursor main_mod=SUPER gaps_in=5 @@ -27,7 +27,7 @@ general { col.active_border=0x66ee1111 col.inactive_border=0x66333333 - apply_sens_to_raw=0 # do not apply the sensitivity to raw input (e.g. used by games where you aim) + apply_sens_to_raw=0 # apply the sensitivity to raw input (e.g. used by games where you aim using your mouse) damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer } @@ -97,4 +97,4 @@ bind=ALT,6,movetoworkspace,6 bind=ALT,7,movetoworkspace,7 bind=ALT,8,movetoworkspace,8 bind=ALT,9,movetoworkspace,9 -bind=ALT,0,movetoworkspace,10 \ No newline at end of file +bind=ALT,0,movetoworkspace,10 From ccdb03391ecc4f66034a056a4bd601e3477d8b3d Mon Sep 17 00:00:00 2001 From: thinkingwithberries Date: Thu, 23 Jun 2022 20:30:28 +0800 Subject: [PATCH 2/4] removed unused max fps option --- example/hyprland.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/example/hyprland.conf b/example/hyprland.conf index 0f4715a4..ad0893c4 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -17,7 +17,6 @@ input { } general { - max_fps=60 # deprecated, unused sensitivity=0.25 # sensitivity for mouse cursor main_mod=SUPER From a8e25955345cab9c67767eb011b0dd5c2b8656d5 Mon Sep 17 00:00:00 2001 From: thinkingwithberries Date: Thu, 23 Jun 2022 21:52:17 +0800 Subject: [PATCH 3/4] Update hyprland.conf --- example/hyprland.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/hyprland.conf b/example/hyprland.conf index ad0893c4..75ed7731 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -17,7 +17,7 @@ input { } general { - sensitivity=0.25 # sensitivity for mouse cursor + sensitivity=0.25 # for mouse cursor main_mod=SUPER gaps_in=5 @@ -26,7 +26,7 @@ general { col.active_border=0x66ee1111 col.inactive_border=0x66333333 - apply_sens_to_raw=0 # apply the sensitivity to raw input (e.g. used by games where you aim using your mouse) + apply_sens_to_raw=0 # whether to apply the sensitivity to raw input (e.g. used by games where you aim using your mouse) damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer } From adead82778b5ce1f005cdc74cc79542c7d3e16fe Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Sat, 25 Jun 2022 23:40:52 +0200 Subject: [PATCH 4/4] some changes to the sens and use in autogen --- example/hyprland.conf | 2 +- src/config/defaultConfig.hpp | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/example/hyprland.conf b/example/hyprland.conf index 75ed7731..30c8559e 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -17,7 +17,7 @@ input { } general { - sensitivity=0.25 # for mouse cursor + sensitivity=1.0 # for mouse cursor main_mod=SUPER gaps_in=5 diff --git a/src/config/defaultConfig.hpp b/src/config/defaultConfig.hpp index fbf3981d..0395fd30 100644 --- a/src/config/defaultConfig.hpp +++ b/src/config/defaultConfig.hpp @@ -24,8 +24,7 @@ input { } general { - max_fps=60 # deprecated, unused - sensitivity=0.25 + sensitivity=1.0 # for mouse cursor main_mod=SUPER gaps_in=5 @@ -34,7 +33,7 @@ general { col.active_border=0x66ee1111 col.inactive_border=0x66333333 - apply_sens_to_raw=0 # do not apply the sensitivity to raw input (e.g. used by games where you aim) + apply_sens_to_raw=0 # whether to apply the sensitivity to raw input (e.g. used by games where you aim using your mouse) damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer }