github.com/wtfutil/wtf@v0.43.0/cfg/default_config_file.go (about) 1 package cfg 2 3 const defaultConfigFile = `wtf: 4 colors: 5 border: 6 focusable: darkslateblue 7 focused: orange 8 normal: gray 9 grid: 10 columns: [32, 32, 32, 32, 90] 11 rows: [10, 10, 10, 4, 4, 90] 12 refreshInterval: 1 13 mods: 14 clocks_a: 15 colors: 16 rows: 17 even: "lightblue" 18 odd: "white" 19 enabled: true 20 locations: 21 Vancouver: "America/Vancouver" 22 Toronto: "America/Toronto" 23 position: 24 top: 0 25 left: 1 26 height: 1 27 width: 1 28 refreshInterval: 15 29 sort: "alphabetical" 30 title: "Clocks A" 31 type: "clocks" 32 clocks_b: 33 colors: 34 rows: 35 even: "lightblue" 36 odd: "white" 37 enabled: true 38 locations: 39 Paris: "Europe/Paris" 40 Barcelona: "Europe/Madrid" 41 Dubai: "Asia/Dubai" 42 position: 43 top: 0 44 left: 2 45 height: 1 46 width: 1 47 refreshInterval: 15 48 sort: "alphabetical" 49 title: "Clocks B" 50 type: "clocks" 51 feedreader: 52 enabled: true 53 feeds: 54 - http://feeds.bbci.co.uk/news/rss.xml 55 feedLimit: 10 56 position: 57 top: 1 58 left: 1 59 width: 2 60 height: 1 61 refreshInterval: 14400 62 ipinfo: 63 colors: 64 name: "lightblue" 65 value: "white" 66 enabled: true 67 position: 68 top: 2 69 left: 1 70 height: 1 71 width: 1 72 refreshInterval: 150 73 power: 74 enabled: true 75 position: 76 top: 2 77 left: 2 78 height: 1 79 width: 1 80 refreshInterval: 15 81 title: "⚡️" 82 textfile: 83 enabled: true 84 filePath: "~/.config/wtf/config.yml" 85 format: true 86 position: 87 top: 0 88 left: 0 89 height: 4 90 width: 1 91 refreshInterval: 30 92 wrapText: false 93 uptime: 94 args: [""] 95 cmd: "uptime" 96 enabled: true 97 position: 98 top: 3 99 left: 1 100 height: 1 101 width: 2 102 refreshInterval: 30 103 type: cmdrunner 104 `