This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
sqlite3 ~/.kodi/userdata/Database/MyVideos116.db "SELECT idMovie from movie_view m WHERE NOT EXISTS(SELECT 1 from actor_link where medi | |
a_type==\"movie\" and media_id==m.idMovie );" | while read -r line; do echo "$line"; curl -X POST -H "Accept: application/json" -H "Con | |
tent-Type: application/json" -d '{"jsonrpc":"2.0","method":"VideoLibrary.RefreshMovie","params":{"movieid":'$line',"ignorenfo":true},"i | |
d":1}' -u kodi:kodi http://localhost:8080/jsonrpc; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---- | |
css custom properties to manipulate color | |
MIT - 2017 - Soft Punch | |
https://gist.github.com/softpunch/ | |
set initial "main" color via HSL values. | |
automatically calculate harmonies and variations of that color with pure css. | |
harmonies are determined solely by hue. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |