This commit is contained in:
elkowar 2024-12-15 11:25:23 +01:00
parent cc2f1665c8
commit 838319207a
Signed by: ElKowar
GPG key ID: 862BA3D7D7760F13
3 changed files with 19 additions and 10 deletions

View file

@ -23,7 +23,6 @@ input {
} }
trackpoint { trackpoint {
accel-speed -0.1 accel-speed -0.1
//accel-speed -0.1
} }
//warp-mouse-to-focus //warp-mouse-to-focus
focus-follows-mouse max-scroll-amount="20%" focus-follows-mouse max-scroll-amount="20%"
@ -64,14 +63,21 @@ environment {
//<yolk> position x=0 y=1440 //<yolk> position x=0 y=1440
//<yolk> } //<yolk> }
// {% end %} // {% elif device.desktop() %}
//<yolk> output "Philips Consumer Electronics Company PHL 345B1C 0x00008E7C" {
//<yolk> mode "3440x1440@99.982"
//<yolk> scale 1
//<yolk> transform "normal"
//<yolk> variable-refresh-rate on-demand=true
//<yolk> position x=2560 y=0
//<yolk> }
//output "DP-4" { //<yolk> output "HDMI-A-1" {
//mode "2560x1440" //<yolk> mode "2560x1440"
//scale 1 //<yolk> scale 1
//position x=0 y=0 //<yolk> position x=0 y=0
//off //<yolk> }
//} // {% end %}

View file

@ -5,6 +5,9 @@ device = {
thinkix = function() thinkix = function()
return SYSTEM.hostname == "thinkix" return SYSTEM.hostname == "thinkix"
end, end,
desktop = function()
return SYSTEM.hostname == "fedora.fritz.box"
end,
laptop = function() laptop = function()
return SYSTEM.hostname == "thinkix" or SYSTEM.hostname == "frissnix" return SYSTEM.hostname == "thinkix" or SYSTEM.hostname == "frissnix"
end, end,