Add aura farming
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
home-manager.sharedModules = [
|
home-manager.sharedModules = [
|
||||||
{
|
{
|
||||||
@@ -14,16 +14,32 @@
|
|||||||
|
|
||||||
bindl =
|
bindl =
|
||||||
let
|
let
|
||||||
touchpadHelper = pkgs.writeShellApplication {
|
touchpadHelper = lib.meta.getExe (
|
||||||
name = "touchpad-helper";
|
pkgs.writeShellApplication {
|
||||||
runtimeInputs = with pkgs; [ hyprland ];
|
name = "touchpad-helper";
|
||||||
text = builtins.readFile ./touchpad-helper.sh;
|
runtimeInputs = with pkgs; [ hyprland ];
|
||||||
};
|
text = builtins.readFile ./scripts/touchpad-helper.sh;
|
||||||
|
}
|
||||||
|
);
|
||||||
in
|
in
|
||||||
[
|
[
|
||||||
", XF86Launch4, exec, ${asusctl} profile -n"
|
", XF86Launch4, exec, ${asusctl} profile -n"
|
||||||
", XF86TouchpadToggle, exec, ${touchpadHelper} asuf1209:00-2808:0219-touchpad"
|
", XF86TouchpadToggle, exec, ${touchpadHelper} asuf1209:00-2808:0219-touchpad"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
bind =
|
||||||
|
let
|
||||||
|
farmAura = lib.meta.getExe (
|
||||||
|
pkgs.writeShellApplication {
|
||||||
|
name = "farm-aura";
|
||||||
|
runtimeInputs = with pkgs; [ genact ];
|
||||||
|
text = builtins.readFile ./scripts/farm-aura.sh;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
in
|
||||||
|
[
|
||||||
|
", XF86Launch3, exec, uwsm app -- $term ${farmAura}"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
11
hosts/himalia/hardware/scripts/farm-aura.sh
Executable file
11
hosts/himalia/hardware/scripts/farm-aura.sh
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
SESSION_NAME="aura-farm-$$"
|
||||||
|
|
||||||
|
tmux new-session -d -s "$SESSION_NAME" "genact -s 25"
|
||||||
|
tmux set-hook -t "$SESSION_NAME" pane-exited "run-shell 'tmux kill-session -t $SESSION_NAME'"
|
||||||
|
|
||||||
|
for _ in {1..4}; do
|
||||||
|
tmux split-window -t "$SESSION_NAME" -h "genact -s 25"
|
||||||
|
done
|
||||||
|
|
||||||
|
tmux select-layout -t "$SESSION_NAME" tiled
|
||||||
|
tmux attach-session -t "$SESSION_NAME"
|
Reference in New Issue
Block a user