From d5b4042b067466854358e7cc333a4a142de3ba79 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" Date: Wed, 25 Mar 2026 13:55:53 +0000 Subject: [PATCH] add gsf --- gsf/config.lua | 18 ++++++++++++++++++ gsf/files/config.json | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 gsf/config.lua create mode 100644 gsf/files/config.json diff --git a/gsf/config.lua b/gsf/config.lua new file mode 100644 index 0000000..73f154d --- /dev/null +++ b/gsf/config.lua @@ -0,0 +1,18 @@ +---@class SigilConfig +---@field target table +---@field ignore? string[] + +---@type SigilConfig +local config = { + target = { + linux = "~/.config/gsf", + default = "~/.config/gsf", + }, + ignore = { + -- "**/.DS_Store", + -- "**/*.tmp", + -- "cache/**", + }, +} + +return config diff --git a/gsf/files/config.json b/gsf/files/config.json new file mode 100644 index 0000000..f755299 --- /dev/null +++ b/gsf/files/config.json @@ -0,0 +1,17 @@ +{ + "mode": 0, + "sens_mult": 1.5, + "yx_ratio": 1.0, + "input_dpi": 400.0, + "angle_rotation": 0.0, + "accel": 2.0, + "offset_linear": 3.5, + "output_cap": 30.0, + "decay_rate": 0.1, + "offset_natural": 0.0, + "limit": 2.0, + "gamma": 1.0, + "smooth": 0.5, + "motivity": 1.5, + "sync_speed": 5.0 +} \ No newline at end of file