Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
# {{{ INFO
# vim: foldmethod=marker
# GASFA: Gazelle's Automatic SquashFs Application
# Main script
# Written by ZeDoCaixao
# Licence: WTFPL - http://www.wtfpl.net/about/
# }}} INFO
# {{{ Basic variables
ask_yn () {
while [ -z "$ANSWER" ]
do
read -s -p "$1 [y/n]: " ANSWER
case "$ANSWER" in
y|Y|yes|Yes ) ANSWER=yes ;;
n|N|no|No ) ANSWER=no ;;
* ) echo "Invalid, try again" ; ANSWER="" ;;
esac
done
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("linux.org.ru") {
h1,h2,h3,h4,h5,h6{
font-family: "Linux Biolinum" !important;
}
html, body {
background: #111 !important;
color: #eee !important;
font-family: "Linux Biolinum" !important;