Skip to content

Instantly share code, notes, and snippets.

@red-noise
red-noise / Spotify script for conky
Last active April 29, 2021 04:51
Spotify script for Conky
#This is ho you should edit your conkyrc file in order to get the spotify player.
####################
# - MEDIA PLAYER - #
####################
${if_running spotify}${voffset -2}${font Liberation Sans:style=Bold:size=8}
${voffset -10}${goto 73}Title:
${goto 73}${color2}${exec ~/.conkycolors/spotify/spotify_info_title}${color}
${goto 73}Artist:
@red-noise
red-noise / Hex to Binary digits
Created January 17, 2014 22:08
Hex to Binary digits
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i,k;
int h[4];
char s;
i=3;
k=0;