Documentation++ & fixed small mistake

This commit is contained in:
id101010
2016-10-17 14:26:09 +02:00
parent 79e576a45e
commit 29a8fc3597
8 changed files with 107 additions and 26 deletions

View File

@@ -1,19 +0,0 @@
#!/bin/bash
SECRET_GOOGLE="asdf"
SECRET_FACEBOOK="asdf"
SECRET_DROPBOX="asdf"
ARG="${1}"
case ${ARG} in
"google")
jauth -secret=${SECRET_GOOGLE}
;;
"facebook")
jauth -secret=${SECRET_FACEBOOK}
;;
"dropbox")
jauth -secret=${SECRET_DROPBOX}
;;
esac

37
i3wm/util/authenticator.sh Executable file
View File

@@ -0,0 +1,37 @@
#!/bin/bash
###############################
# _ _ _ #
# (_) | | | | #
# _ __ _ _ _| |_| |__ #
# | |/ _` | | | | __| '_ \ #
# | | (_| | |_| | |_| | | | #
# | |\__,_|\__,_|\__|_| |_| #
# _/ | #
# |__/ #
# #
###############################
# This script needs jauth-git to work
# jauth can be installed from the arch aur
#
# yaourt -S jauth-git
#
SECRET_GOOGLE="asdf"
SECRET_FACEBOOK="asdf"
SECRET_DROPBOX="asdf"
ARG="${1}"
case ${ARG} in
"google")
jauth -secret=${SECRET_GOOGLE}
;;
"facebook")
jauth -secret=${SECRET_FACEBOOK}
;;
"dropbox")
jauth -secret=${SECRET_DROPBOX}
;;
esac

View File

@@ -1,4 +1,20 @@
#!/usr/bin/python2
###############################
# _ ____ _ _ #
# (_)___ \| | | | #
# _ __) | |__ | |_ _ _ __ #
# | ||__ <| '_ \| | | | | '__|#
# | |___) | |_) | | |_| | | #
# |_|____/|_.__/|_|\__,_|_| #
# #
###############################
"""
A simple python script that takes a
screenshot, blurs it and invokes i3lock.
"""
import gtk.gdk
import os, sys
from PIL import ImageFilter

View File

@@ -1,5 +1,15 @@
#!/bin/bash
########################################################
# _ __ _______ #
# | | \ \ / / __ \ #
# __| |_ __ ___ ___ _ __ _ \ \ /\ / /| |__) | #
# / _` | '_ ` _ \ / _ \ '_ \| | | \ \/ \/ / | _ / #
# | (_| | | | | | | __/ | | | |_| |\ /\ / | | \ \ #
# \__,_|_| |_| |_|\___|_| |_|\__,_| \/ \/ |_| \_\ #
# #
########################################################
BACKGROUND="#402e2e"
FOREGOURND="#978965"
SELECTED_BACKGROUND="#808080"

View File

@@ -1,5 +1,23 @@
#!/bin/bash
##########################################
# _ _ _ _ #
# | | | | (_) | | #
# __ _____ | |_ __ ___ | |_ _ __| | #
# \ \ / / _ \| | '_ \ / _ \| __| |/ _` | #
# \ V / (_) | | | | | (_) | |_| | (_| | #
# \_/ \___/|_|_| |_|\___/ \__|_|\__,_| #
# #
##########################################
#
# This script uses volnoti, which can be installed from git or
# from the arch aur.
#
# yaourt -S volnoti
#
VOLUME=$(amixer get Master | grep Mono: | sed 's|[^[]*\[\([0-9]*\).*|\1|')
VALUE=3dB
MUTE=0

View File

@@ -1,5 +1,16 @@
#!/bin/sh
#######################################################
# _ _ #
# | | | #
# __ ____ _| | |_ __ __ _ _ __ ___ _ __ ___ #
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__/ __| #
# \ V V / (_| | | | |_) | (_| | |_) | __/ | \__ \ #
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_| |___/ #
# | | | | #
# |_| |_| #
#######################################################
PICTURES="$HOME/.wallpapers/"
SHOWTIME="10m"