summaryrefslogtreecommitdiffstats
path: root/lass/2configs/antimicrox/default.nix
blob: 16f546ce65cd4e26061b34fec1d6d1d5e21db3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ config, lib, pkgs, ... }:
{
  systemd.services.antimicrox = {
    wantedBy = [ "multi-user.target" ];
    environment = {
      DISPLAY = ":0";
    };
    serviceConfig = {
      User = config.users.users.mainUser.name;
      ExecStartPre = lib.singleton (pkgs.writeDash "init_state" "echo 0 > /tmp/gamepad.state");
      ExecStart = "${pkgs.antimicrox}/bin/antimicrox --no-tray --hidden --profile ${./mouse.amgp}";
    };
  };

  environment.systemPackages = [
    (pkgs.writers.writeDashBin "gamepad_mouse_disable" ''
      echo 1 > /tmp/gamepad.state
      ${pkgs.antimicrox}/bin/antimicrox --profile ${./empty.amgp}
    '')
    (pkgs.writers.writeDashBin "gamepad_mouse_enable" ''
      echo 0 > /tmp/gamepad.state
      ${pkgs.antimicrox}/bin/antimicrox --profile ${./mouse.amgp}
    '')
    (pkgs.writers.writeDashBin "gamepad_mouse_toggle" ''
      state=$(${pkgs.coreutils}/bin/cat /tmp/gamepad.state)
      if [ "$state" = 1 ]; then
        /run/current-system/sw/bin/gamepad_mouse_enable
      else
        /run/current-system/sw/bin/gamepad_mouse_disable
      fi
    '')
  ];
}