mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 01:43:13 +00:00
107 lines
2.6 KiB
Plaintext
107 lines
2.6 KiB
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
module GruvboxColors where
|
||
|
|
||
|
backgroundColor="#282828"
|
||
|
currentLineColor="#fabd2f"
|
||
|
selectionColor="#665c54"
|
||
|
foregroundColor="#ebdbb2"
|
||
|
foregroundSecondColor="#fbf1c1"
|
||
|
commentColor="#458588"
|
||
|
cyanColor="#83a598"
|
||
|
greenColor="#8ec07c"
|
||
|
greenDarkerColor="#689d6a"
|
||
|
orangeColor="#fe8019"
|
||
|
pinkColor="#d3869b"
|
||
|
purpleColor="#b16286"
|
||
|
redColor="#cc241d"
|
||
|
yellowColor="#fabd2f"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
battery ()
|
||
|
{
|
||
|
val=$(acpi | grep -oh "[[:digit:]]*%" | grep -oh "[0-9]*")
|
||
|
|
||
|
case $val in
|
||
|
[1-9][0-9][0-9])
|
||
|
echo "<fc=$greenColor>-{ </fc>$val<fc=$greenColor>%}</fc>"
|
||
|
;;
|
||
|
[5-9][0-9])
|
||
|
echo "<fc=$greenColor>-{ </fc>$val<fc=$greenColor>%}</fc>"
|
||
|
;;
|
||
|
[1-4][0-9])
|
||
|
echo "<fc=$yellowColor>-{ </fc>$val<fc=$yellowColor>%}</fc>"
|
||
|
;;
|
||
|
[1-9])
|
||
|
echo "<fc=$orangeColor> </fc>$val%"
|
||
|
echo "<fc=$orangeColor>-{ </fc>$val<fc=$orangeColor>%}</fc>"
|
||
|
;;
|
||
|
0)
|
||
|
echo "<fc=$redColor> </fc>"
|
||
|
;;
|
||
|
*)
|
||
|
echo "<fc=$greenColor>-{ </fc>$val<fc=$greenColor>%}</fc>"
|
||
|
;;
|
||
|
esac
|
||
|
}
|
||
|
|
||
|
|
||
|
volume ()
|
||
|
{
|
||
|
#maybe change to Right, Left, Mono
|
||
|
val=$(amixer sget Master | grep 'Left:' | awk -F'[][]' '{ print $2 }'| grep -oh "[0-9]*")
|
||
|
case $val in
|
||
|
100)
|
||
|
echo "<fc=$redColor>-{ $val</fc>%<fc=$redColor>}</fc>"
|
||
|
;;
|
||
|
[5-9][0-9])
|
||
|
echo "<fc=$orangeColor>-{ $val</fc>%<fc=$orangeColor>}</fc>"
|
||
|
;;
|
||
|
[1-4][0-9])
|
||
|
echo "<fc=$yellowColor>-{ $val</fc>%<fc=$yellowColor>}</fc>"
|
||
|
;;
|
||
|
[1-9])
|
||
|
echo "<fc=$greenDarkerColor>-{ $val</fc>%<fc=$greenDarkerColor>}</fc>"
|
||
|
;;
|
||
|
0)
|
||
|
echo "<fc=$currentLineColor>-{}</fc>"
|
||
|
;;
|
||
|
*)
|
||
|
echo "<fc=$redColor>-{ $val</fc>%<fc=$redColor>}</fc>"
|
||
|
esac
|
||
|
}
|
||
|
|
||
|
diskspace ()
|
||
|
{
|
||
|
#might be another /dev/sda...
|
||
|
echo "<fc=$pinkColor>-{ </fc>"$(df -h | grep sda2 | grep -oh "[0-9]*%") "<fc=$pinkColor>}</fc>"
|
||
|
}
|
||
|
wifi ()
|
||
|
{
|
||
|
name=$(connmanctl services | grep "*A" | grep -oh "^*A. [A-Za-z]*" | grep -oh "[[:space:]][A-Za-x]*" | head -n 1)
|
||
|
if [ $name != " " ];
|
||
|
then
|
||
|
echo "<fc=$cyanColor>-{ </fc>$name<fc=$cyanColor>}</fc>"
|
||
|
else
|
||
|
echo 睊 off
|
||
|
fi
|
||
|
}
|
||
|
layout ()
|
||
|
{
|
||
|
echo "<fc=$orangeColor>-{ </fc>"$(xkblayout-state print %s)"<fc=$orangeColor>}</fc>"
|
||
|
}
|
||
|
timeanddate ()
|
||
|
{
|
||
|
echo "<fc=$yellowColor>-{</fc>" "<fc=$yellowColor>$(date +'%T')}</fc>"
|
||
|
}
|
||
|
calendar ()
|
||
|
{
|
||
|
echo "<fc=$greenDarkerColor> </fc>"$(date +'%d/%m/%Y')
|
||
|
}
|
||
|
|
||
|
echo "$(wifi)$(battery)$(volume)$(layout)$(diskspace)$(timeanddate)<fc=$greenDarkerColor>-{</fc>$(calendar)<fc=$greenDarkerColor>}--</fc>"
|
||
|
|
||
|
#echo " "
|