Coder Social home page Coder Social logo

sbar's Introduction

sbar

Simple bar script for dwm and other window managers.

screenshot

Inspired by dwmblocks. Written in posix.

Features

  • Modules update with variable timing.
  • Signalling to update modules when needed.

Setup

  • Add bar module as a function. Make sure to assign it to a variable.
update_cpu () { 
	cpu="$( grep -o "^[^ ]*" /proc/loadavg )" 
}
  • Modify display function to change the positioning of output.
display () { 
	xsetroot -name " [$weather] [$memory $cpu] [$bat] [$backlight] [$vol] $time "
}

You can use printf instead of xsetroot to feed it into some other bar like lemonbar.

  • If signalling needed then add
trap "update_cpu;display" "RTMIN+6"
  • this will update cpu when signal 40=34+6 is given to the script (RTMIN = 34)
  • to update it from external commands
kill -40 "$(cat ~/.cache/pidofbar)"
  • Example from my sxhkrc
{XF86AudioRaiseVolume,XF86AudioLowerVolume}
	pulsemixer --change-volume {+,-}5 ; \
	kill -34 "$(cat ~/.cache/pidofbar)"
  • Add the update information in the while loops as follows
[ $((sec % 60)) -eq 2 ] && update_cpu

To update item ever 60 seconds with an offset of 2 seconds.

sbar's People

Contributors

pystardust avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

sbar's Issues

status2d

how to make this work with status2d?

i tried this and the calendar output has color

up_cal () {
	cal="^c#ea6962^ $(date "+%b-%d-%a")"
}

but when i add another one the output is broken

up_time () {
	time="^c#e78a4e^ $(date "+%I:%M%p")"
}

up_cal () {
	cal="^c#ea6962^ $(date "+%b-%d-%a")"
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.