diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-10-31 11:32:40 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-10-31 11:32:40 -0400 |
| commit | f6038cf3ee7262f93ef0df7b001a3ab47886b697 (patch) | |
| tree | 85058efa28ce7ce564e770e501e929500b25031e /bin | |
| parent | 8a7171e7f3cd61ac79b8c806603130a51be3700b (diff) | |
| download | dotfiles-f6038cf3ee7262f93ef0df7b001a3ab47886b697.tar.gz dotfiles-f6038cf3ee7262f93ef0df7b001a3ab47886b697.tar.xz | |
Add some common scripts. A symlink for a vimrc snippet
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/Makefile | 11 | ||||
| -rwxr-xr-x | bin/day | 2 | ||||
| -rwxr-xr-x | bin/night | 2 | ||||
| -rwxr-xr-x | bin/passmenu | 26 | ||||
| -rwxr-xr-x | bin/snipmenu | 7 | ||||
| -rwxr-xr-x | bin/wallpaper | 8 |
6 files changed, 56 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile new file mode 100644 index 0000000..ac77c59 --- /dev/null +++ b/bin/Makefile @@ -0,0 +1,11 @@ + + +install: + install -d $(HOME)/bin + install snipmenu $(HOME)/bin/ + sed "s|__REPLACE__|$$(dirname `pwd`)/snips|g" < snipmenu > $(HOME)/bin/snipmenu + chmod +x $(HOME)/bin/snipmenu + install passmenu $(HOME)/bin/ + install day $(HOME)/bin/ + install night $(HOME)/bin/ + install wallpaper $(HOME)/bin/ @@ -0,0 +1,2 @@ +#!/bin/sh +redshift -x diff --git a/bin/night b/bin/night new file mode 100755 index 0000000..633353a --- /dev/null +++ b/bin/night @@ -0,0 +1,2 @@ +#!/bin/sh +redshift -P -O 3500K diff --git a/bin/passmenu b/bin/passmenu new file mode 100755 index 0000000..4f4ef1d --- /dev/null +++ b/bin/passmenu @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +shopt -s nullglob globstar + +typeit=0 +if [[ $1 == "--type" ]]; then + typeit=1 + shift +fi + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") + +[[ -n $password ]] || exit + +if [[ $typeit -eq 0 ]]; then + pass show -c "$password" 2>/dev/null +else + pass show "$password" | { IFS= read -r pass; printf %s "$pass"; } | + xdotool type --clearmodifiers --file - +fi + diff --git a/bin/snipmenu b/bin/snipmenu new file mode 100755 index 0000000..d525715 --- /dev/null +++ b/bin/snipmenu @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +conf="__REPLACE__" +cd "$conf" +_file=$(find . \! -type d | dmenu "$@") + +xdotool type --delay 1ms --clearmodifiers --file "$conf/$_file" diff --git a/bin/wallpaper b/bin/wallpaper new file mode 100755 index 0000000..73f9871 --- /dev/null +++ b/bin/wallpaper @@ -0,0 +1,8 @@ +#!/bin/sh +set -e +wallpaper="$1"; shift + +while true ; do + feh --bg-fill "$wallpaper" + sleep 15 +done |
