View ubsi
This file contains 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 | |
# ========================================================= # | |
# ubsi (Ubuntu System Info bash script) # | |
# Created by: spcmd # | |
# Website: http://spcmd.github.io # | |
# https://github.com/spcmd # | |
# https://gist.github.com/spcmd # | |
# License: GNU GPLv3 - http://www.gnu.org/copyleft/gpl.html # | |
# ========================================================= # |
View userChrome.css [archived]
This file contains 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
/* | |
# ========================================================= # | |
# One Liner Firefox userChrome.css # | |
# Created by: spcmd # | |
# Website: http://spcmd.github.io # | |
# https://github.com/spcmd # | |
# https://gist.github.com/spcmd # | |
# ========================================================= # | |
*/ |
View Userstyle - PH! Forum Dark [archived]
This file contains 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
@-moz-document | |
url-prefix(http://logout.hu/forum), | |
url-prefix(http://logout.hu/tema), | |
url-prefix(http://logout.hu/muvelet/hsz), | |
url-prefix(http://prohardver.hu/forum), | |
url-prefix(http://prohardver.hu/tema), | |
url-prefix(http://prohardver.hu/muvelet/hsz), | |
url-prefix(http://mobilarena.hu/forum), | |
url-prefix(http://mobilarena.hu/tema), | |
url-prefix(http://mobilarena.hu/muvelet/hsz), |
View ASCII - Delorean
This file contains 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
__---~~~~--__ __--~~~~---__ | |
`\---~~~~~~~~\\ //~~~~~~~~---/' | |
\/~~~~~~~~~\|| ||/~~~~~~~~~\/ | |
`\\ //' | |
`\\ //' | |
|| || Hey Doc! | |
______--~~~~~~~~~~~~~~~~~~--______ | |
___ // _-~ ~-_ \\ ___ | |
`\__)\/~ ~\/(__/' | |
_--`-___ ___-'--_ |
View Script - elementary OS logo
This file contains 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
echo ' ,▄▓▓▓██▀█▓▓▓▄, ' | |
echo ' ╓▓▓▀" ╓▄▄▄▄▄ "▀▀█▄ ' | |
echo ' ▄█▀` ╓▓▀` "▀█ `▀█▄ ' | |
echo ' ██ ╥█▀ ▓█ ║█ ' | |
echo ' █▌ ▄█▀ ▓█ ║█ ' | |
echo ' ╠█ ╓█▌ ╓█Γ ▄█▌ ' | |
echo ' █▌ ║█H ▄█¬ ▓█╢█ ' | |
echo ' ██ ║█▄ ,▄▓╨ ▄█▀ ╣█ ' | |
echo ' j█ ▀█▄ ,▄█▀└ ▄█▀ █▌ ' | |
echo ' ▀█ ,,█████╙ ,╓▄██╨ ▓▀ ' |
View youtube_rss_feeds
This file contains 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
# Chris Were Digital | Linux, Tech and Open Source | |
https://www.youtube.com/feeds/videos.xml?channel_id=UCAPR27YUyxmgwm3Wc2WSHLw | |
# The Ben Heck Show | |
https://www.youtube.com/feeds/videos.xml?channel_id=UChturLXwYxwTOf_5krs0qvA | |
# Lazy Game Reviews | |
https://www.youtube.com/feeds/videos.xml?channel_id=UCLx053rWZxCiYWsBETgdKrQ | |
# LinusTechTips | |
https://www.youtube.com/feeds/videos.xml?channel_id=UCXuqSBlHAE6Xw-yeJA0Tunw | |
# TekLinux | |
https://www.youtube.com/feeds/videos.xml?channel_id=UCOWcZ6Wicl-1N34H0zZe38w |
View magnet2rtorrent.desktop
This file contains 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
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Name=magnet2rtorrent | |
Comment=Load magnet links to rtorrent (usable with Firefox, Luakit or other browsers) | |
Icon=/home/spcmd/.icons/rtorrent.png | |
Exec=magnet2rtorrent | |
Terminal=false |
View youtube_redirect.lua
This file contains 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
-- Put it in your rc.lua above the "End user script loading" part. | |
-- Redirect youtube.com to m.youtube.com | |
webview.init_funcs.youtube_redirect = function (view, w) | |
view:add_signal("navigation-request", function (v, uri) | |
if string.match(uri, "^https://www%.youtube%.com/-$") then | |
v.uri = "https://m.youtube.com/?app=m" | |
return false | |
end | |
if string.match(uri, "www%.youtube%.com/watch%?v=") then |
View privoxy-blocklist
This file contains 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
# Config of privoxy-blocklist | |
# array of URL for AdblockPlus lists | |
# for more sources just add it within the round brackets | |
URLS=("https://easylist-downloads.adblockplus.org/easylist.txt" "https://easylist-downloads.adblockplus.org/easyprivacy.txt" "https://easylist-downloads.adblockplus.org/fanboy-social.txt") | |
# config for privoxy initscript providing PRIVOXY_CONF, PRIVOXY_USER and PRIVOXY_GROUP | |
INIT_CONF="/etc/conf.d/privoxy" | |
# !! if the config above doesn't exist set these variables here !! |
View ranger_simple_titlebar.py
This file contains 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
# Simple titlebar plugin for ranger with trash indicator on the left side | |
# Trash indicator appears only if trash contains at least one file | |
# Indicator is a unicode symbol, it may not appear on some systems (plugin is tested on Arch Linux) | |
# Copy this file to ~/.config/ranger/plugins | |
from ranger.gui.widgets.titlebar import TitleBar | |
import os | |
def _get_left_part(self, bar): |
OlderNewer