| 1 | # Specifies the network interface to use for the LocalIP readout |
| 2 | interface = "wlan0" |
| 3 | |
| 4 | # Lengthen uptime output |
| 5 | long_uptime = true |
| 6 | |
| 7 | # Lengthen shell output |
| 8 | long_shell = false |
| 9 | |
| 10 | # Lengthen kernel output |
| 11 | long_kernel = false |
| 12 | |
| 13 | # Toggle between displaying the current shell or your user's default one. |
| 14 | current_shell = true |
| 15 | |
| 16 | # Toggle between displaying the number of physical or logical cores of your |
| 17 | # processor. |
| 18 | physical_cores = true |
| 19 | |
| 20 | # Disks to show disk usage for. Defaults to `["/"]`. |
| 21 | # disks = ["/", "/home/user"] |
| 22 | |
| 23 | # Show percentage next to disk information |
| 24 | # disk_space_percentage = true |
| 25 | |
| 26 | # Show percentage next to memory information |
| 27 | # memory_percentage = true |
| 28 | |
| 29 | # Themes need to be placed in "$XDG_CONFIG_DIR/macchina/themes" beforehand. |
| 30 | # e.g.: |
| 31 | # if theme path is /home/foo/.config/macchina/themes/Sodium.toml |
| 32 | # theme should be uncommented and set to "Sodium" |
| 33 | # |
| 34 | theme = "Beryllium" |
| 35 | |
| 36 | # Displays only the specified readouts. |
| 37 | # Accepted values (case-sensitive): |
| 38 | # - Host |
| 39 | # - Machine |
| 40 | # - Kernel |
| 41 | # - Distribution |
| 42 | # - OperatingSystem |
| 43 | # - DesktopEnvironment |
| 44 | # - WindowManager |
| 45 | # - Resolution |
| 46 | # - Backlight |
| 47 | # - Packages |
| 48 | # - LocalIP |
| 49 | # - Terminal |
| 50 | # - Shell |
| 51 | # - Uptime |
| 52 | # - Processor |
| 53 | # - ProcessorLoad |
| 54 | # - Memory |
| 55 | # - Battery |
| 56 | # - GPU |
| 57 | # - DiskSpace |
| 58 | # Example: |
| 59 | # show = ["Battery", "Memory", ...] |