mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 13:42: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 {
|
||||
accel-speed -0.1
|
||||
//accel-speed -0.1
|
||||
}
|
||||
//warp-mouse-to-focus
|
||||
focus-follows-mouse max-scroll-amount="20%"
|
||||
|
@ -64,14 +63,21 @@ environment {
|
|||
//<yolk> position x=0 y=1440
|
||||
//<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" {
|
||||
//mode "2560x1440"
|
||||
//scale 1
|
||||
//position x=0 y=0
|
||||
//off
|
||||
//}
|
||||
//<yolk> output "HDMI-A-1" {
|
||||
//<yolk> mode "2560x1440"
|
||||
//<yolk> scale 1
|
||||
//<yolk> position x=0 y=0
|
||||
//<yolk> }
|
||||
// {% end %}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -5,6 +5,9 @@ device = {
|
|||
thinkix = function()
|
||||
return SYSTEM.hostname == "thinkix"
|
||||
end,
|
||||
desktop = function()
|
||||
return SYSTEM.hostname == "fedora.fritz.box"
|
||||
end,
|
||||
laptop = function()
|
||||
return SYSTEM.hostname == "thinkix" or SYSTEM.hostname == "frissnix"
|
||||
end,
|
||||
|
|
Loading…
Reference in a new issue