Misc small changes
This commit is contained in:
parent
437ea9cdda
commit
e0e34a98ac
|
@ -33,5 +33,6 @@
|
||||||
.newsboat
|
.newsboat
|
||||||
!.newsboat/config
|
!.newsboat/config
|
||||||
|
|
||||||
.xmonad/*.hi
|
.xmonad/
|
||||||
.xmonad/*.o
|
!/xmonad/xmonad.hs
|
||||||
|
!/xmonad/setup-script
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
|
|
@ -49,8 +49,17 @@ Config {
|
||||||
-- Run Com "/home/h7x4/.config/xmobar/scripts/wireless.sh" [] "wi" 100,
|
-- Run Com "/home/h7x4/.config/xmobar/scripts/wireless.sh" [] "wi" 100,
|
||||||
Run Com "/home/h7x4/.config/xmobar/scripts/volume.py" [] "vol" 10,
|
Run Com "/home/h7x4/.config/xmobar/scripts/volume.py" [] "vol" 10,
|
||||||
Run UnsafeStdinReader,
|
Run UnsafeStdinReader,
|
||||||
|
Run DiskU [
|
||||||
|
("/", "[<used>/<size>]"),
|
||||||
|
("/home", "[<used>/<size>]")
|
||||||
|
-- ("/home/h7x4/Dropbox", "[<used>/<size>]")
|
||||||
|
]
|
||||||
|
["-L", "20", "-H", "50", "-m", "1", "-p", "3",
|
||||||
|
"--low", "#a6e22e",
|
||||||
|
"--normal", "#f8f8f2",
|
||||||
|
"--high", "#f92672"] 20,
|
||||||
|
|
||||||
Run BatteryP ["BAT0"]
|
Run Battery
|
||||||
[
|
[
|
||||||
"-t", "<fn=2><acstatus></fn> (<left>%)",
|
"-t", "<fn=2><acstatus></fn> (<left>%)",
|
||||||
"--Low", "20",
|
"--Low", "20",
|
||||||
|
@ -69,5 +78,5 @@ Config {
|
||||||
, alignSep = "}{"
|
, alignSep = "}{"
|
||||||
, template = " <icon=lambda.xpm/> %mpc% %UnsafeStdinReader% }\
|
, template = " <icon=lambda.xpm/> %mpc% %UnsafeStdinReader% }\
|
||||||
\ <fc=#ee9a00>%date%</fc> \
|
\ <fc=#ee9a00>%date%</fc> \
|
||||||
\{ <fc=lightgreen><fn=2>🐏</fn> %memory%</fc> | <fc=cyan>%wlp59s0%</fc> | <fc=#f5f1bc><fn=3>%vol%</fn></fc> | %battery% "
|
\{ %disku% | <fc=lightgreen><fn=2>🐏</fn> %memory%</fc> | <fc=cyan>%wlp59s0%</fc> | <fc=#f5f1bc><fn=3>%vol%</fn></fc> | %battery% "
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
isPlaying() {
|
isPlaying() {
|
||||||
if mpc status | grep playing >/dev/null
|
if mpc status | grep playing >/dev/null
|
||||||
|
|
Loading…
Reference in New Issue