more stuff
This commit is contained in:
parent
4457d4e7dd
commit
8c4d844867
|
@ -4,16 +4,9 @@ Config { overrideRedirect = False
|
||||||
, fgColor = "FGCOLOR"
|
, fgColor = "FGCOLOR"
|
||||||
, position = TopW L 100
|
, position = TopW L 100
|
||||||
, iconRoot = ".config/xmobar/xpm/"
|
, iconRoot = ".config/xmobar/xpm/"
|
||||||
, commands = [ Run Weather "EGPF"
|
, commands = [Run Cpu
|
||||||
[ "--template", "<weather> <tempC>°C"
|
|
||||||
, "-L", "0"
|
|
||||||
, "-H", "25"
|
|
||||||
] 36000
|
|
||||||
, Run Cpu
|
|
||||||
[ "-L", "3"
|
[ "-L", "3"
|
||||||
, "-H", "50"
|
, "-H", "50"
|
||||||
, "--high" , "red"
|
|
||||||
, "--normal", "green"
|
|
||||||
] 10
|
] 10
|
||||||
, Run Alsa "default" "Master"
|
, Run Alsa "default" "Master"
|
||||||
[ "--template", "<volumestatus>"
|
[ "--template", "<volumestatus>"
|
||||||
|
@ -22,11 +15,11 @@ Config { overrideRedirect = False
|
||||||
, "--on", ""
|
, "--on", ""
|
||||||
]
|
]
|
||||||
, Run Memory ["--template", "Mem: <usedratio>%"] 10
|
, Run Memory ["--template", "Mem: <usedratio>%"] 10
|
||||||
, Run Swap [] 10
|
|
||||||
, Run Date "%a %Y-%m-%d <fc=COLOR6>%H:%M</fc>" "date" 10
|
, Run Date "%a %Y-%m-%d <fc=COLOR6>%H:%M</fc>" "date" 10
|
||||||
, Run XMonadLog
|
, Run XMonadLog
|
||||||
|
, Run Com "get_music_info" [] "" 10
|
||||||
]
|
]
|
||||||
, sepChar = "%"
|
, sepChar = "%"
|
||||||
, alignSep = "}{"
|
, alignSep = "}{"
|
||||||
, template = " <icon=haskell_20.xpm/> %XMonadLog% }{ %alsa:default:Master% | %cpu% | %memory% * %swap% | %EGPF% | %date% "
|
, template = " <icon=haskell_20.xpm/> %XMonadLog% }{ %get_music_info% | %alsa:default:Master% | %cpu% | %memory% | %date% "
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit b0ed135a9539739a7c3e00a8031e7a34df561173
|
Subproject commit 995541b03d5bb2c4b5fcd5cfea20dab5d6bf01f3
|
|
@ -162,7 +162,7 @@
|
||||||
;;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
;;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
||||||
;;scala ; java, but good
|
;;scala ; java, but good
|
||||||
;;(scheme +guile) ; a fully conniving family of lisps
|
;;(scheme +guile) ; a fully conniving family of lisps
|
||||||
sh ; she sells {ba,z,fi}sh shells on the C xor
|
(sh +lsp) ; she sells {ba,z,fi}sh shells on the C xor
|
||||||
;;sml
|
;;sml
|
||||||
;;solidity ; do you need a blockchain? No.
|
;;solidity ; do you need a blockchain? No.
|
||||||
;;swift ; who asked for emoji variables?
|
;;swift ; who asked for emoji variables?
|
||||||
|
|
|
@ -52,9 +52,5 @@ xmonad --restart
|
||||||
# change lock screen background
|
# change lock screen background
|
||||||
#betterlockscreen -u $PATH_TO_IMG
|
#betterlockscreen -u $PATH_TO_IMG
|
||||||
|
|
||||||
betterlockscreen -u $PATH_TO_IMG
|
betterlockscreen -u $PATH_TO_IMG &
|
||||||
|
|
||||||
# change login manager screen
|
|
||||||
PROJECT_ROOT="/home/os/Documents/Projects/aether-fork" # change this path if needed.
|
|
||||||
WALLPAPER_FOLDER="src/img/wallpapers"
|
|
||||||
WAL_CSS="/home/os/.cache/wal/colors.json"
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
head ~/.wnpClient/wnpClient.txt -n 2 | sed ':a;N;$!ba;s/\n/ by /g'
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
result=$(echo -e "Shutdown\nRestart\nSleep\nLock" | dmenu -nb "$color0" -nf "$color15" -sb "$color1" -sf "$color15" -p "")
|
result=$(echo -e "Shutdown\nRestart\nSleep\nLock" | dmenu -nb "$color0" -nf "$color15" -sb "$color1" -sf "$color15" -p "")
|
||||||
case "$result" in
|
case "$result" in
|
||||||
("Shutdown") shutdownnow ;;
|
("Shutdown") systemctl poweroff;;
|
||||||
("Restart") reboot ;;
|
("Restart") reboot ;;
|
||||||
("Sleep") systemctl suspend ;;
|
("Sleep") systemctl suspend ;;
|
||||||
("Lock") betterlockscreen -l ;;
|
("Lock") betterlockscreen -l ;;
|
||||||
|
|
Loading…
Reference in New Issue