Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h1 align="center">Now Clocking</h1>
<p align="center"><i>Made with :heart: by <a href="https://github.com/gamehelp16">@gamehelp16</a> and <a href="https://github.com/Rayzr522">@Rayzr522</a></i></p>
<p align="center"><i>Made with :heart: by <a href="https://github.com/gamehelp16">@gamehelp16</a>, <a href="https://github.com/Rayzr522">@Rayzr522</a> and <a href="https://github.com/jgabriel98">@jgabriel98</a></i></p>

> **Now Clocking** is a Conky widget which shows a Monstercat style Now Playing when music is played via Spotify or cmus, or a clock when no music is playing.

Expand All @@ -16,8 +16,6 @@
- [Supported Players](#supported-players)
- [Installation](#installation)
- [FAQ](#faq)
- [Credits](#credits)
- [Join Me](#join-me)

## Requirements

Expand Down Expand Up @@ -72,13 +70,3 @@ $ path/to/now-clocking/start.sh
> **Why are there 2 Conky widgets?**

Originally, this had to do with weird transparency issues in Conky that required a non-transparent album artwork. However, that has long since been patched in Conky. The widgets have remained separated, however, so as to make aligning everything easier, especially since one widget functions both as the track info *and* a clock.

## Credits

Huge props to the original creator, [@gamehelp16](https://github.com/gamehelp16). I used this script back in 2017/2018 and rediscovered it in 2020, and decided to rework it to be more portable, efficient, and updated to modern Conky config standards.

Also huge props to Hoefler & Frere-Jones for the wonderful Gotham fonts, and Julieta Ulanovsky (and crew) for the slick Montserrat font.

## Join Me

[![Discord Badge](https://github.com/Rayzr522/ProjectResources/raw/master/RayzrDev/badge-small.png)](https://rayzr.dev/join)
2 changes: 1 addition & 1 deletion conky/np.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ conky.config = {
};

conky.text = [[
${if_running spotify}${color #fff}${font Gotham Book:pixelsize=18}NOW PLAYING:
${if_match "" != "${exec playerctl -p spotify status}}${color #fff}${font Gotham Book:pixelsize=18}NOW PLAYING:
${color #fff}${font Gotham Book:pixelsize=15}
${color #fff}${font Gotham:style=bold:pixelsize=44} ${font Gotham:style=bold:pixelsize=46}${exec playerctl -p spotify metadata artist}${font Gotham:style=bold:pixelsize=10}
${color #fff}${font Gotham Book:pixelsize=44} ${font Gotham Book:pixelsize=23}${exec playerctl -p spotify metadata title}
Expand Down
2 changes: 1 addition & 1 deletion conky/npart.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ conky.config = {
};

conky.text = [[
${if_running spotify}${exec ./scripts/fetch-art spotify}
${if_match "" != "${exec playerctl -p spotify status}}${exec ./scripts/fetch-art spotify}
${image ./data/spotify.png -p 0,0 -s 125x125 -n}
${else}${if_match "" != "${exec playerctl -p vlc status}"}${exec ./scripts/fetch-art vlc}
${image ./data/vlc.png -p 0,0 -s 125x125 -n}
Expand Down