|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {{ ansible_managed | comment }}
-
- # i3blocks config file
- #
- # Please see man i3blocks for a complete reference!
- # The man page is also hosted at http://vivien.github.io/i3blocks
- #
- # List of valid properties:
- #
- # align
- # color
- # command
- # full_text
- # instance
- # interval
- # label
- # min_width
- # name
- # separator
- # separator_block_width
- # short_text
- # signal
- # urgent
-
- # Global properties
- #
- # The top properties below are applied to every block, but can be overridden.
- # Each block command defaults to the script name to avoid boilerplate.
- command=/usr/share/i3blocks/$BLOCK_NAME
- separator_block_width=15
- markup=none
-
- # activity
- [activity]
- command=tail -f ~/.timer/activity.i3blocks 2> /dev/null
- interval=persist
- markup=pango
-
- # hostinfo
- [hostinfo]
- command=echo "$USER@`hostname -s`"
- interval=once
-
- # Load Average
- [load_average]
- interval=10
-
- # CPU usage
- #
- # The script may be called with -w and -c switches to specify thresholds,
- # see the script for details.
- #[cpu_usage]
- #label=CPU
- #interval=10
- #min_width=CPU: 100.00%
-
- # Memory usage
- #
- # The type defaults to "mem" if the instance is not specified.
- [memory]
- label=MEM
- interval=30
-
- [memory]
- label=SWAP
- instance=swap
- interval=30
-
- # Disk usage
- #
- # The directory defaults to $HOME if the instance is not specified.
- # The script may be called with a optional argument to set the alert
- # (defaults to 10 for 10%).
- [disk]
- label=HOME
- interval=30
-
- # Battery indicator
- #
- # The battery instance defaults to 0.
- [battery]
- #label=BAT
- label=⚡
- #instance=1
- interval=30
-
- # Volume indicator
- #
- # The first parameter sets the step (and units to display)
- # The second parameter overrides the mixer selection
- # See the script for details.
- [volume]
- #label=VOL
- label=♪
- instance=Master
- #instance=PCM
- interval=once
- signal=10
-
- # Date Time
- #
- [time]
- command=date '+%Y-%m-%d W%V %a %H:%M %Z'
- interval=5
|