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
#!/usr/bin/env bash | |
# Author: @ivoarch | |
OPT="$1" | |
PACKAGE="$2" | |
usage() { | |
echo "" | |
echo "$0 - list RPM package contents" | |
echo "" |
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 | |
# Брояч на дните до Коледа!! | |
# | |
# Зависимости: | |
# - bash | |
# - notify-send | |
# - xsnow | |
TODAY="$(date +%j)" | |
XMAS="$(date -d "25-Dec" +%j)" |
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/env bash | |
# Конзолна аларма използвайки mplayer. | |
PROG="${0##*/}" | |
VERSION="0.1" | |
BANNER="${PROG} ${VERSION}" | |
red=$'\e[0;31m' | |
green=$'\e[0;32m' | |
ylw=$'\e[0;33m' |
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
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $ | |
# Maintainer: <ivo@arch> | |
pkgname=konzolno-radio | |
pkgver=1.0.9 | |
pkgrel=1 | |
pkgdesc="Console internet radio to listen to Bulgarian radio stations online in GNU/Linux" | |
arch=('any') | |
url="https://github.com/ivoarch/konzolno-radio" | |
license=('MIT') | |
depends=('bash' 'mplayer') |
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
# How to sign your custom RPM package with GPG key | |
# Step: 1 | |
# Generate gpg key pair (public key and private key) | |
# | |
# You will be prompted with a series of questions about encryption. | |
# Simply select the default values presented. You will also be asked | |
# to create a Real Name, Email Address and Comment (comment optional). | |
# | |
# If you get the following response: |
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/env bash | |
# runafteridle.sh | |
TIME=$1 | |
COMMAND=$2 | |
LOGFILE="${HOME}/.runafteridle.log" | |
usage() { | |
echo "" | |
echo "$0 - Изпълни команда след определено време на застой" |
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
--- exmplayer-orig.spec 2015-04-04 18:02:19.173215364 +0200 | |
+++ exmplayer.spec 2015-03-20 13:31:32.000000000 +0100 | |
@@ -3,17 +3,17 @@ | |
Name: exmplayer | |
Version: 3.8.0 | |
-Release: 1%{?dist} | |
-Summary: MPlayer GUI with thumbnail seeking, 3D Video support, | |
+Release: 2%{?dist}.sos | |
+Summary: MPlayer GUI with thumbnail seeking and 3D Video support. |
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
diff -Nru ExMplayer-orig/src/playerwindow.ui ExMplayer/src/playerwindow.ui | |
--- ExMplayer-orig/src/playerwindow.ui 2014-02-01 08:29:44.000000000 +0100 | |
+++ ExMplayer/src/playerwindow.ui 2015-03-20 12:55:24.386708044 +0100 | |
@@ -2908,7 +2908,7 @@ | |
<property name="maxLength"> | |
<number>32766</number> | |
</property> | |
- <property name="placeholderText"> | |
+ <property name="text"> | |
<string>Enter command</string> |
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 | |
if [ "$1" == "" ]; then | |
echo Usage: $0 pngfile | |
exit 0; | |
fi | |
FILE=`basename $1 .png` | |
if [ ! -e $FILE.png ]; then |
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
[emacs] | |
name=Emacs repo | |
baseurl=http://pj.freefaculty.org/EL/6/x86_64/ | |
failovermethod=priority | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=http://pj.freefaculty.org/EL/PaulJohnson-BinaryPackageSigningKey |