- commit
- 6b7d670
- parent
- 749eacd
- author
- xxwhirlpool
- date
- 2025-08-29 10:27:35 -0400 EDT
testing new monospace font (maple mono)
4 files changed,
+20,
-7
1@@ -17,8 +17,8 @@ conky.config = {
2 own_window_class = 'Conky',
3 own_window_type = 'normal',
4 -- Colors
5- font = 'JetBrainsMono NF:style=regular:size=13',
6- font1 = 'JetBrainsMono NF:style=regular:size=13',
7+ font = 'Maple Mono NF CN ExtraLight:style=regular:size=13',
8+ font1 = 'Maple Mono NF CN ExtraLight:style=regular:size=13',
9 color1 = '#c6d0f5', -- accent
10 color2 = '#c6d0f5', -- accent dimmed
11 own_window_transparent = false, -- transparency
12@@ -69,9 +69,9 @@ ${goto 24}${color1}Uptime: ${color1}$uptime
13
14 ${goto 24}${color1}${font1}Memory ${voffset 8}${font}
15 ${goto 24}${color1}RAM: ${color1}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}
16-${goto 24}${color1}Swap: ${color1}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}${voffset 8}
17+${goto 24}${color1}Swap: ${color1}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}
18
19-${goto 24}${color1}${font1}Now Playing ${voffset 8}${font}
20-${goto 24}${color1}${execi 5 (python3 /home/kat/Documents/lastfm.py)}
21+${goto 24}${color1}${font1}Now Playing ${font}${voffset 8}
22+${color1}${font1}${execi 5 (/home/kat/Documents/lastfm.sh | sed 's/^/ /')}
23
24 ]]
+1,
-1
1@@ -11,7 +11,7 @@ include current-theme.conf
2 #: individual font faces and even specify special fonts for particular
3 #: characters.
4
5-font_family JetBrainsMono NF
6+font_family Maple Mono NF CN ExtraLight
7 # bold_font auto
8 # italic_font auto
9 # bold_italic_font auto
+13,
-0
1@@ -0,0 +1,13 @@
2+#!/bin/bash
3+
4+user="springpool"
5+LASTFM_APIKEY="x"
6+URL="https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=$user&api_key=$LASTFM_APIKEY&format=json&limit=1"
7+
8+artist=$(curl -s ${URL} | jq -r '.recenttracks.track[0].artist."#text"')
9+album=$(curl -s ${URL} | jq -r '.recenttracks.track[0].album."#text"')
10+song=$(curl -s ${URL} | jq -r '.recenttracks.track[0].name')
11+
12+printf "$artist"
13+
14+printf "\n$album\n$song"
+1,
-1
1@@ -1,5 +1,5 @@
2 #!/bin/bash
3
4-cd /home/kat/.config/conky && curl -s "http://wttr.in/New+York?0pqT" | tail -n +2 | magick -size 460x460 xc:black -font "JetBrainsMonoNF-Nerd-Font-Regular" -pointsize 15 -fill "#c6d0f5" -transparent black -annotate +0+0 "@-" wttr.png
5+cd /home/kat/.config/conky && curl -s "http://wttr.in/New+York?0pqT" | tail -n +2 | magick -size 460x460 xc:black -font "Maple Mono NF CN ExtraLight" -pointsize 15 -fill "#cdd4ee" -transparent black -annotate +0+0 "@-" wttr.png
6
7 DISPLAY=:0 conky -c /home/kat/.config/conky/themes/strip-clear/dark-strip-l-clear-1920-1080.conf