2024-03-28 19:52:15 -04:00
|
|
|
{
|
2024-04-07 22:16:33 -04:00
|
|
|
lib,
|
2024-06-22 12:10:36 -04:00
|
|
|
pkgs,
|
2024-07-09 19:17:53 -04:00
|
|
|
self,
|
2024-04-07 22:16:33 -04:00
|
|
|
...
|
|
|
|
}: {
|
2024-07-10 21:21:14 -04:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
{
|
2024-07-21 23:25:10 -04:00
|
|
|
wayland.windowManager = {
|
|
|
|
hyprland.settings = {
|
|
|
|
bind = [
|
|
|
|
",xf86launch2,exec,${lib.getExe pkgs.playerctl} play-pause"
|
|
|
|
];
|
|
|
|
|
|
|
|
exec-once = [''${
|
|
|
|
lib.getExe self.inputs.iio-hyprland.packages.${pkgs.system}.default
|
|
|
|
} "desc:Samsung Display Corp. 0x4152"''];
|
|
|
|
|
|
|
|
input = {
|
|
|
|
tablet.output = "eDP-1";
|
|
|
|
touchdevice.output = "eDP-1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
sway.config = {
|
|
|
|
input = {
|
|
|
|
"1386:21186:Wacom_HID_52C2_Finger" = {
|
|
|
|
map_to_output = "'Samsung Display Corp. 0x4152 Unknown'";
|
|
|
|
};
|
|
|
|
|
|
|
|
"1386:21186:Wacom_HID_52C2_Pen" = {
|
|
|
|
map_to_output = "'Samsung Display Corp. 0x4152 Unknown'";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
keybindings = {
|
|
|
|
"XF86Launch2" = "exec ${lib.getExe pkgs.playerctl} play-pause";
|
|
|
|
};
|
|
|
|
|
|
|
|
output = {"Samsung Display Corp. 0x4152 Unknown".scale = "2.0";};
|
2024-07-19 13:59:48 -04:00
|
|
|
};
|
|
|
|
};
|
2024-07-01 22:59:41 -04:00
|
|
|
|
2024-07-15 00:14:18 -04:00
|
|
|
ar.home.desktop.hyprland = {
|
|
|
|
laptopMonitors = ["desc:Samsung Display Corp. 0x4152,preferred,auto,2,transform,0"];
|
2024-07-19 13:59:48 -04:00
|
|
|
|
2024-07-15 00:14:18 -04:00
|
|
|
tabletMode = {
|
|
|
|
enable = true;
|
2024-07-30 16:51:41 -04:00
|
|
|
switches = ["Lenovo Yoga Tablet Mode Control switch"];
|
2024-07-15 00:14:18 -04:00
|
|
|
};
|
|
|
|
};
|
2024-07-10 21:21:14 -04:00
|
|
|
}
|
|
|
|
];
|
2024-03-28 19:52:15 -04:00
|
|
|
}
|