Skip to content

Instantly share code, notes, and snippets.

@pik4ez
pik4ez / dunstrc
Created June 2, 2014 06:22
Dunst config
[global]
font = Monospace 10
# allow a small subset of html markup:
# <b>bold</b>
# <i>italic</i>
# <s>strikethrough<s/>
# <u>underline</u>
#
# for a complete reference see http://developer.gnome.org/pango/stable/PangoMarkupFormat.html
@pik4ez
pik4ez / vkalbu_starter
Last active September 1, 2015 09:18
Starter for vkalbu+dgrab. Processes albums list from file, grabs album contents using dgrab, uploads audio album to vk.com using vkalbu.
#!/bin/sh
albums_file=/path/to/albums_file
todo_file=/path/to/tmp/vkalbu_todo.json
# -u 10 and 10< in done section is used
# to prevent reading from stding inside
# vkalbu python script (captcha request)
# @see http://stackoverflow.com/questions/1521462/looping-through-the-content-of-a-file-in-bash
while read -u 10 album; do
settings {
logfile = "/home/tt4/work/lsyncd/log/lsyncd.log",
statusFile = "/home/tt4/work/lsyncd/log/lsyncd-status.log",
statusInterval = 20
}
sync {
default.rsyncssh,
source = "/home/tt4/mnt/ji/",
host = "root@ngs.ru.ji.d",
#!/bin/bash
function usage {
echo "Replaces branch with tag in local and remote repos."
echo
echo "Usage:"
echo " $0 <remote> <branch>"
}
if [ -z "$1" ]; then