1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # Global properties
- command=/usr/lib/i3blocks/$BLOCK_NAME
- separator_block_width=15
- markup=pango
- # Guess the weather hourly
- [weather]
- command=curl -Ss 'https://wttr.in/munich?0&T&Q' | cut -c 16- | head -2 | xargs echo
- interval=3600
- [volume]
- label=vol
- command=$HOME/.scripts/i3/i3blocks/i3volume.sh
- interval=2
- # Mem %
- [memory]
- label=mem
- interval=30
- command=$HOME/.scripts/i3/i3blocks/i3mem.sh
- # CPU %
- [cpu]
- label=cpu
- interval=5
- command=$HOME/.scripts/i3/i3blocks/i3cpu.sh
- # Network interface monitoring
- [ip]
- label=ip
- color=#19c682
- interval=30
- separator=true
- command=ip --brief a | grep wlp | awk '{print " " $3}'
- # Battery indicator
- [battery]
- label=bat
- interval=30
- command=$HOME/.scripts/i3/i3blocks/i3bat.sh
- # Date Time
- [time]
- command=date '+%d.%m %H:%M '
- interval=5
|