conky-config/config/fallback.dhall

44 lines
1005 B
Plaintext
Raw Permalink Normal View History

2022-08-11 00:05:06 -04:00
let C = ./config.dhall
let memory =
C.ModType.memory
2022-08-15 23:23:15 -04:00
C.Memory::{
, show_stats = False
, show_swap = False
, show_plot = True
, table_rows = 3
}
let processor =
C.ModType.processor
2022-08-15 23:23:15 -04:00
C.Processor::{
, core_rows = 0
, core_padding = 0
, show_stats = False
, show_plot = True
, table_rows = 3
}
2022-08-11 00:05:06 -04:00
let layout =
{ anchor = { x = 12, y = 11 }
, panels =
[ C.Panel.PPanel
{ columns =
[ C.Column.CCol
{ blocks =
2022-08-15 23:23:15 -04:00
[ C.mod (C.ModType.network C.Network::{=})
, C.Block.Pad 10
, C.mod memory
, C.Block.Pad 10
, C.mod processor
2022-08-11 00:27:16 -04:00
]
, width = 436
2022-08-11 00:27:16 -04:00
}
2022-08-11 00:05:06 -04:00
]
, margins = { x = 20, y = 10 }
}
]
2022-08-11 00:05:06 -04:00
}
in C.toConfig 1 1920 1080 C.Theme::{=} layout