Skip to content

Instantly share code, notes, and snippets.

View spvkgn's full-sized avatar

spvkgn

  • Russia
View GitHub Profile
@spvkgn
spvkgn / create-tar.gz.sh
Created June 20, 2017 14:49
Create tarball from git repo
#!/bin/sh
[ ! -z "$1" ] || exit
NAME=$1 ; cd $NAME
DATESTAMP=$(date +"%Y%m%d")
VERSION=$(git describe master --tags --match='v*' | sed 's/^v//' | cut -d- -f1)
COMMIT=$(git rev-parse --short=5 HEAD)
git archive master --format=tar.gz --prefix=$NAME-$VERSION~git$DATESTAMP.$COMMIT/ -o ../$NAME-$VERSION~git$DATESTAMP.$COMMIT.tar.gz
@spvkgn
spvkgn / gist:a5412912ecb731af544a49b0f85acf2c
Last active June 24, 2017 08:44
Add random keyfile to existing LUKS device
sudo dd if=/dev/urandom of=/root/keyfile bs=1024 count=4
sudo chmod 0400 /root/keyfile
sudo cryptsetup luksAddKey /dev/sdX /root/keyfile
@spvkgn
spvkgn / gist:0e64d620bf5ef41f81cda115ffcff108
Last active July 2, 2017 04:39
add gcc 4.9 alternative
#!/bin/sh
sudo apt install -y gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
@spvkgn
spvkgn / autossh.service
Last active July 3, 2017 05:12
AutoSSH tunnel systemd unit
[Unit]
Description=AutoSSH service for a reverse tunnel from some.example.com to localhost
After=network.target
After=networking.service
[Service]
Environment=AUTOSSH_FIRST_POLL=30
Environment=AUTOSSH_GATETIME=0
Environment=AUTOSSH_POLL=60
Environment=USERNAME=user
dget -ux http://ru.archive.ubuntu.com/ubuntu/pool/main/x/xorg-server/xorg-server_1.19.5-0ubuntu2.dsc
wget https://bugs.freedesktop.org/attachment.cgi?id=129861 -O xkb-switch-on-release.patch
cd cd xorg-server-1.19.3
quilt import ../xkb-switch-on-release.patch
dch -l ppa~artful -D artful 'Add xkb-switch-on-release.patch'
debuild -S -sd -d
@spvkgn
spvkgn / suspend-modules
Last active April 6, 2018 11:18 — forked from mauron85/suspend-modules
Ubuntu 16.04 systemd unload modules on sleep
#!/bin/bash
# Put into /lib/systemd/system-sleep/suspend-modules
# chmod a+x /lib/systemd/system-sleep/suspend-modules
# Create /etc/suspend-modules.conf
# with one module per line
# credits to:
# https://bbs.archlinux.org/viewtopic.php?pid=1540125#p1540125
@spvkgn
spvkgn / ddb-lyrics.sh
Last active July 15, 2018 14:21
Fetch lyrics with DeaDBeeF player
#!/bin/sh
DEADBEEF=$(which deadbeef)
ARTIST_NAME=$($DEADBEEF --nowplaying-tf "%artist%")
TRACK_TITLE=$($DEADBEEF --nowplaying-tf "%title%")
printf "\033c"
ARTIST=$(echo "$ARTIST_NAME" | perl -MURI::Escape -ne 'chomp;print uri_escape($_),"\n"')
@spvkgn
spvkgn / m3u.py
Last active August 21, 2018 09:46 — forked from jonlabelle/m3u.py
Generate an mp3 playlist file (.m3u), sorted by album track number.
#!/usr/bin/env python3
import os
import sys
import glob
from mutagen.mp3 import MP3
from mutagen.easyid3 import EasyID3
#
# MP3 playlist generator
@spvkgn
spvkgn / imagemagick_tips.sh
Created July 7, 2019 11:58
imagemagick tips
#!/bin/sh
# resize jpeg
mogrify -format jpg -strip -interlace plane -sampling-factor 4:2:0 -define jpeg:dct-method=float -density 300x300 -resize 50% -quality 85 -path /tmp *.jpg
convert -format jpg -strip -interlace plane -sampling-factor 4:2:0 -define jpeg:dct-method=float -density 300x300 -resize 50% -quality 85 file.jpg
@spvkgn
spvkgn / compton.service
Created May 2, 2018 09:35
systemd user units
[Unit]
Description=Compton X11 compositor
After=graphical.target
[Service]
Type=forking
Restart=always
RestartSec=10
ExecStart=/usr/bin/compton -b
ExecReload=/bin/kill -SIGUSR1 $MAINPID