mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-26 06:02:23 +00:00
Fix niri
This commit is contained in:
parent
cc2f1665c8
commit
838319207a
3 changed files with 19 additions and 10 deletions
|
@ -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 %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue