more stuff

This commit is contained in:
qvalentin 2021-10-08 18:16:06 +02:00
parent 4457d4e7dd
commit 8c4d844867
6 changed files with 9 additions and 18 deletions

View File

@ -4,16 +4,9 @@ Config { overrideRedirect = False
, fgColor = "FGCOLOR"
, position = TopW L 100
, iconRoot = ".config/xmobar/xpm/"
, commands = [ Run Weather "EGPF"
[ "--template", "<weather> <tempC>°C"
, "-L", "0"
, "-H", "25"
] 36000
, Run Cpu
, commands = [Run Cpu
[ "-L", "3"
, "-H", "50"
, "--high" , "red"
, "--normal", "green"
] 10
, Run Alsa "default" "Master"
[ "--template", "<volumestatus>"
@ -22,11 +15,11 @@ Config { overrideRedirect = False
, "--on", ""
]
, Run Memory ["--template", "Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Date "%a %Y-%m-%d <fc=COLOR6>%H:%M</fc>" "date" 10
, Run XMonadLog
, Run Com "get_music_info" [] "" 10
]
, sepChar = "%"
, 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

View File

@ -162,7 +162,7 @@
;;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
;;scala ; java, but good
;;(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
;;solidity ; do you need a blockchain? No.
;;swift ; who asked for emoji variables?

View File

@ -52,9 +52,5 @@ xmonad --restart
# change lock screen background
#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"

2
.scripts/get_music_info Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
head ~/.wnpClient/wnpClient.txt -n 2 | sed ':a;N;$!ba;s/\n/ by /g'

View File

@ -3,7 +3,7 @@
result=$(echo -e "Shutdown\nRestart\nSleep\nLock" | dmenu -nb "$color0" -nf "$color15" -sb "$color1" -sf "$color15" -p "")
case "$result" in
("Shutdown") shutdownnow ;;
("Shutdown") systemctl poweroff;;
("Restart") reboot ;;
("Sleep") systemctl suspend ;;
("Lock") betterlockscreen -l ;;