My scripts for startup, dmenu, and the command line
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #!/bin/sh
-
- speaker_muted=🔇
- speaker_low=🔈
- speaker_medium=🔉
- speaker_high=🔊
- brightness_symbol=🔅
-
- DELAY=1m
- # Statusbar loop
-
- while true; do
- mbsync -a
- sleep $DELAY
- done &
-
- while true; do
- mail
- volume=$(amixer sget Master | awk -F"[][]" 'END{ print $2 }')
- volume_amount=$(printf $volume | tr -d %)
- if [ $volume_amount = 0 ]; then
- volume_symbol=$speaker_muted
- elif [ $volume_amount -lt 30 ]; then
- volume_symbol=$speaker_low
- elif [ $volume_amount -lt 70 ]; then
- volume_symbol=$speaker_medium
- else
- volume_symbol=$speaker_high
- fi
-
- xsetroot -name "📧Messages $(find ~/Mail -path '*/INBOX/new' -type f | wc -l) |
- $volume_symbol$volume | $(date +"%c")"
- sleep $DELAY
- done
|