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/bash | |
# Script to change the fanspeed of the Lenovo SA120 server | |
# Depends on: | |
# sg3_utils https://slackware.pkgs.org/14.2/slackware-x86_64/sg3_utils-1.42-x86_64-1.txz.html | |
# fancontrol.py https://github.com/AndrewX192/lenovo-sa120-fanspeed-utility | |
SPEED=${1:-2} | |
installpkg sg3_utils-1.42-x86_64-1.txz |
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
var lists = $('.trakt-icon-list-thick'); | |
lists.each(function(){ | |
this.click(); | |
$(this).closest('a.list').siblings('.popover.with-list').find("li[data-list-id='{LIST_ID_HERE}']").click(); | |
}); |
OlderNewer