aboutsummaryrefslogtreecommitdiff
path: root/.scripts
diff options
context:
space:
mode:
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/airplay4
-rwxr-xr-x.scripts/emoji18
-rwxr-xr-x.scripts/inputset2
-rwxr-xr-x.scripts/noise215
-rwxr-xr-x.scripts/pomo122
-rwxr-xr-x.scripts/screen1
-rwxr-xr-x.scripts/term10
-rwxr-xr-x.scripts/wallset3
-rwxr-xr-x.scripts/weather62
9 files changed, 406 insertions, 31 deletions
diff --git a/.scripts/airplay b/.scripts/airplay
index 0fa8302..c01099d 100755
--- a/.scripts/airplay
+++ b/.scripts/airplay
@@ -1,8 +1,6 @@
#!/bin/env sh
sudo systemctl start avahi-daemon
-sudo systemctl stop ufw
sleep 1
-uxplay
-sudo systemctl start ufw
+uxplay -n melvin -nh -p
sudo systemctl stop avahi-daemon
diff --git a/.scripts/emoji b/.scripts/emoji
new file mode 100755
index 0000000..2d22796
--- /dev/null
+++ b/.scripts/emoji
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+window=$(xdotool getactivewindow)
+
+set -- junk "$(cut -d '|' -f 1 ~/.config/emoji | dmenu -p emoji)"
+
+shift
+
+if [ $# -eq 0 ]; then
+ exit
+fi
+
+emoji=$(grep "^$(echo $@)|" ~/.config/emoji | cut -d '|' -f 2 | tr -s '\r')
+
+#echo "$emoji" | xclip -selection clipboard
+xdotool type --window "$window" "$emoji"
+
+xdotool windowactivate "$window"
diff --git a/.scripts/inputset b/.scripts/inputset
index ca1c5af..2354df3 100755
--- a/.scripts/inputset
+++ b/.scripts/inputset
@@ -8,3 +8,5 @@ xinput set-prop "SynPS/2 Synaptics TouchPad" "Device Enabled" 0
xinput set-prop "pointer:Logitech MX Master 2S" "libinput High Resolution Wheel Scroll Enabled" 0
xinput set-prop "TPPS/2 Elan TrackPoint" "libinput Accel Speed" 0.4
xinput set-prop "TPPS/2 Elan TrackPoint" "libinput Accel Profile Enabled" 1 0
+
+#echo -n 1 | sudo tee /sys/devices/platform/i8042/serio1/serio2/press_to_select
diff --git a/.scripts/noise b/.scripts/noise
new file mode 100755
index 0000000..d26b462
--- /dev/null
+++ b/.scripts/noise
@@ -0,0 +1,215 @@
+#!/usr/bin/env bash
+# bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2011-09-11
+#
+# _______________| noise : ambient Brown noise generator (cf. white noise).
+#
+# Usage: noise [minutes=59] [band-pass freq center=1786] [wave]
+# ^minutes can be any non-zero integer.
+#
+# Dependencies: play (from sox package)
+
+# Brownian noise, also known as Brown noise or red noise, is the kind of signal
+# noise produced by Brownian motion, hence its alternative name of random walk
+# noise. The term "Brown noise" does not originate from the color, but from
+# Robert Brown who discovered Brownian motion. Brown noise is produced by
+# integrating white noise. The sound is a low roar resembling a waterfall or
+# heavy rainfall. We shall filter it through a band-pass, then add effects
+# to mellow the output for ambience.
+
+# [/] - could increase volume oscillation (amplitude modulation) to simulate
+# waves or breathing pattern -- but this could be too relaxing.
+# Hear the free online services listed at the end of file.
+# Our goal here is calm concentration in a noisy environment.
+
+
+# CHANGE LOG Code posted at https://gist.github.com/1209835
+#
+# 2011-09-11 Repeat use of one-minute segment to cut CPU usage by 95%.
+# Fix tremolo to give very slow wave oscillation in volume.
+# (Thanks to xguse for his gist at github.)
+# Constant volume introduces tension psychologically.
+# 2011-09-10 First version based on 2009 article by Tom Swiss, and
+# subsequent comments. See below for relevant portions.
+
+# _____ Prelims
+set -u
+# ^ unbound (i.e. unassigned) variables shall be errors.
+# Example of default assignment: arg1=${1:-'foo'}
+set -e
+# ^ error checking :: Highly Recommended (caveat: you can't check $? later).
+#
+# _______________ :: BEGIN Script ::::::::::::::::::::::::::::::::::::::::
+
+minutes=${1:-'59'}
+repeats=$(( minutes - 1 ))
+center=${2:-'1786'}
+
+wave=${3:-'0.02'}
+# ^increase for more volume oscillation, but suggest no higher than 0.20
+
+noise='brown'
+# ^your choice: 'white', 'pink', 'brown', 'tpdf'
+# where tpdf stands for Triangular Probability Density Function (cf. dither).
+# N.B. - white and pink noise have higher frequencies than Brown.
+
+len='01:00'
+# ^CONSTANT one minute. (Format for specifying time length is hh:mm:ss.frac)
+# ___ATTN___ We first pre-compute one minute of audio output to file,
+# then playback repeatedly as necessary to satisfy minutes argument.
+# This dramatically cuts CPU usage by 95% after the first minute.
+
+
+echo " :: Please stand-by... sox will 'play' $noise noise for $minutes minutes."
+
+
+play --no-show-progress -c 2 --null synth $len ${noise}noise band -n $center 499 \
+ tremolo $wave 37 reverb 19 repeat $repeats
+
+# # Previously published one-line versions misused tremolo:
+# play -c 2 --null synth $len brownnoise band -n 1800 1400 tremolo 500 .1 reverb 50
+# play -c 2 --null synth $len brownnoise band -n 2500 4000 tremolo 20 .1 reverb 50
+# play --null synth $len brownnoise band -n 1200 200 tremolo 20 .1 reverb 20
+# play --null synth $len brownnoise band -n 1200 200 tremolo 20 .1
+
+
+# _____ ARGUMENTS explained via "man sox"
+
+# -q, --no-show-progress
+# Run in quiet mode when SoX wouldn't otherwise do so; this is
+# the opposite of the -S option.
+#
+# -S, --show-progress
+# Display input file format/header information, and processing
+# progress as input file(s) percentage complete, elapsed time,
+# and remaining time (if known; shown in brackets), and the
+# number of samples written to the output file. Also shown is a
+# peak-level meter, and an indication if clipping has occurred.
+
+
+# -c 2
+# Two channels. Without this, the output is not stereo.
+
+
+# -n, --null
+# This can be used in place of an input or output filename to
+# specify that a `null file' is to be used. Note that here,
+# `null file' refers to a SoX-specific mechanism and is not
+# related to any operating-system mechanism with a similar name.
+# Using a null file to input audio is equivalent to using a
+# normal audio file that contains an infinite amount of silence,
+# and as such is not generally useful unless used with an effect
+# that specifies a finite time length (such as trim or synth).
+
+
+# synth
+# Some noise options: whitenoise, tpdfnoise, pinknoise, brownnoise.
+
+
+# band [-n] center[k] [width[h|k|o|q]]
+# Apply a band-pass filter. The frequency response drops
+# logarithmically around the center frequency. The width
+# parameter gives the slope of the drop. The frequencies at
+# center + width and center - width will be half of their
+# original amplitudes. band defaults to a mode oriented to
+# pitched audio, i.e. voice, singing, or instrumental music.
+# The -n (for noise) option uses the alternate mode for un-
+# pitched audio (e.g. percussion). Warning: -n introduces a
+# power-gain of about 11dB in the filter, so beware of output
+# clipping. band introduces noise in the shape of the filter,
+# i.e. peaking at the center frequency and settling around it
+#
+# Consider this for centering the band-pass...
+#
+# Freq (Hz) Octave Description
+# 16 to 32 1st Human threshold, the lowest pedal notes
+# of a pipe organ.
+# 32 to 512 2nd to 5th Rhythm frequencies, where the lower and upper
+# bass notes lie.
+# 512 to 2048 6th to 7th Defines human speech intelligibility, gives a
+# horn-like or tinny quality to sound.
+# 2048 to 8192 8th to 9th Gives presence to speech, where labial and
+# fricative sounds lie.
+# 8192 to 16384 10th Brilliance, the sounds of bells and the ringing
+# of cymbals. In speech, the sound of
+# the letter "S" (8000-11000 Hz)
+# Source: http://en.wikipedia.org/wiki/Audio_frequency
+#
+# Avoid the really low frequencies which will produce disturbing rumble.
+
+
+# tremolo speed [depth]
+# Apply a tremolo (low frequency amplitude modulation) effect to
+# the audio. The tremolo frequency in Hz is given by speed, and
+# the depth as a percentage by depth (default 40). Increasing
+# the depth gives wider range between soft and loud volumes.
+
+
+# reverb [-w|--wet-only] [reverberance (50%) [HF-damping (50%)
+# [room-scale (100%) [stereo-depth (100%)
+# [pre-delay (0ms) [wet-gain (0dB)]]]]]]
+
+
+# repeat count
+# Repeat the entire audio count times. Requires temporary file
+# space to store the audio to be repeated. [But where exactly?]
+
+
+
+# _______________ "white noise" generator with sox [edited for code content]
+# by Tom Swiss, http://unreasonable.org/node/303
+# January 2007, updated circa September 2009,
+# included comments through September 2011
+#
+# Sox is "the Swiss army knife of sound processing programs." It includes sound
+# generation capabilties for pure tones and white noise. "Pink noise" is
+# also in sox's bag of tricks. After a bit of experimentation, I found the
+# following shell script produced agreeable results:
+#
+# len='7:00:00'
+# play -t sl - synth $len pinknoise band -n 1200 200 tremolo 20 .1 < /dev/zero
+#
+# __________ Comments
+#
+# Drew Haven: This beats the heck out of "cat /dev/urandom > /dev/dsp". The band
+# filter is nice to take out the pops.
+#
+# gi1242: With recent versions of sox, things are a little simpler:
+# play -n synth 60:00 brownnoise
+# produces brown noise for an hour. (Replace brown with pink/white if you
+# prefer. My baby sleeps best with brown).
+#
+# Tom Swiss: "Brown" in "brown noise" means Brownian motion. It's also called
+# red noise. I learned something today, hooray!
+#
+# Adrien Beau, 30 January 2011: You can replace the "-t sl -" and "< /dev/zero"
+# parts with the "-n" option, so your sox invocation becomes:
+# ^= --null (for null file)
+# play -n synth $len pinknoise band -n 1200 200 tremolo 20 .1
+# The brown noise sounds the best in my opinion.
+#
+# Dennis Murczak, 5 May 2011: I adapted the line to a "my neighbor is having a
+# party and I need to study" situation:
+# play -c 2 -n synth pinknoise band -n 2500 4000 reverb 20
+# The band pass is centered on human voice frequencies and wide enough to also
+# cover most of the musical frequency range, without producing annoying
+# high-pitched noise. The slight reverb adds a background/ambient quality for
+# less distraction.
+
+
+exit 0
+# _______________ EOS :: END of Script ::::::::::::::::::::::::::::::::::::::::
+
+
+# _____ Free ONLINE alternatives
+#
+# Simply Noise for white, pink and brown/red noise generator; uses Flash:
+# http://simplynoise.com $0.99 app available
+# [Flash consumes about 30 times more than our script in CPU usage!]
+#
+# PlayNoise for white, pink, and brown noise generator; uses Javascript/HTML5:
+# http://playnoise.com
+
+
+# _____ References
+# Re: Brown noise, see http://en.wikipedia.org/wiki/Brownian_noise
+
diff --git a/.scripts/pomo b/.scripts/pomo
new file mode 100755
index 0000000..b10b49b
--- /dev/null
+++ b/.scripts/pomo
@@ -0,0 +1,122 @@
+#!/bin/bash
+
+### Send desktop notifications
+## Params: header {String} - Notification highlighted text
+## Params: body {String} - Notification complementary text
+## Returns: {Void}
+function notify() {
+ header=$1
+ body=$2
+ notify-send -u critical -t 0 -a pomo "${header:?}" "${body:?}"
+}
+
+### Show a countdown timer and a message and updates without
+### cleaning the whole screen
+## Params: seconds {Number} - Countdown time in seconds
+## Params: message {String} - Timer description
+## Returns: {String} - "hh:mm:ss - $message"
+function countdown(){
+ secs=$1
+ shift
+ message=$*
+ while [ $secs -gt -1 ]
+ do
+ sleep 1 &
+ printf "\r%s - %02d:%02d:%02d" "$message" $((secs/3600)) $(((secs/60)%60)) $((secs%60))
+ secs=$(( $secs - 1 ))
+ wait
+ done
+ echo
+}
+
+### Transforms minutes into seconds
+## Params: minutes {Number} - Ammount of minutes to be transformed to seconds
+## Returns: {Number} - Seconds
+function minutes_to_seconds() {
+ minutes=$1
+ echo $(($minutes * 60))
+}
+
+### Add minutes to current time
+## Params: minutes {Number} - Ammounts of minutes to be added
+## Returns: {Date} - Current date plus minutes
+function current_time_plus_minutes() {
+ minutes=$1
+ date -d "$minutes minutes" +'%H:%M'
+}
+
+### Display a summary of the settings defined by the user
+## Params: focus_minutes {Number} - Ammount of minutes to last a focus period
+## Params: break_minutes {Number} - Ammount of minutes to last a break period
+## Params: long_break_minutes {Number} - Ammount of minutes to last a long break period
+## Params: breaks_until_long {Number} - Ammount of breaks until a long break period starts
+## Returns: {String} - Formatted summary of the settings
+function display_summary() {
+ focus_minutes=$1
+ break_minutes=$2
+ long_break_minutes=$3
+ breaks_until_long=$4
+
+ echo "╔════════════════╦════════╗"
+ echo "║ FOCUS ║ $(printf "%03d\n" $focus_minutes) ║"
+ echo "║ BREAK ║ $(printf "%03d\n" $break_minutes) ║"
+ echo "║ LONG BREAK ║ $(printf "%03d\n" $long_break_minutes) ║"
+ echo "║ BREAKS TL LONG ║ $(printf "%03d\n" $breaks_until_long) ║"
+ echo "╚════════════════╩════════╝"
+}
+
+### Display a help message
+## Returns: {String} - Formatted help message with all available settings and options
+function display_help() {
+ echo "Usage: `basename $0` [options] [focus] [break] [long_break] [breaks_until_long]"
+ echo " options -h: display help message"
+ echo " focus Minutes of focus until break | Default = 25"
+ echo " break Minutes of break until focus | Default = 5"
+ echo " long_break Minutes of long break until focus | Default = 15"
+ echo " breaks_until_long Number of breaks until long break | Default = 4"
+}
+
+### Controls the application flow, parse arguments, show the countdown and notifications
+## Params: focus_minutes {Number} - Ammount of minutes to last a focus period
+## Params: break_minutes {Number} - Ammount of minutes to last a break period
+## Params: long_break_minutes {Number} - Ammount of minutes to last a long break period
+## Params: breaks_until_long {Number} - Ammount of breaks until a long break period starts
+## Returns: {Void}
+function main() {
+ focus_minutes=${1-25} # default = 25
+ break_minutes=${2-5} # default = 5
+ long_break_minutes=${3-15} # default = 15
+ breaks_until_long=${4-4} # default = 4
+
+ focus_seconds=$(minutes_to_seconds $focus_minutes)
+ break_seconds=$(minutes_to_seconds $break_minutes)
+ long_break_seconds=$(minutes_to_seconds $long_break_minutes)
+
+
+ display_summary $focus_minutes $break_minutes $long_break_minutes $breaks_until_long
+
+
+ while true; do
+ for (( i=1; i<=$breaks_until_long; i++ )); do
+ countdown "$focus_seconds" "FOCUS TIME"
+ notify "BREAK: $break_minutes MINUTES" "Focus time at $(current_time_plus_minutes $break_minutes)"
+
+ if [ $(($i)) -ne $breaks_until_long ]; then
+ countdown $break_seconds "BREAK TIME"
+ notify "FOCUS: $focus_minutes MINUTES" "Break time at $(current_time_plus_minutes $focus_minutes)"
+ else
+ notify "LONG BREAK: $long_break_minutes MINUTES" "Focus time at $(current_time_plus_minutes $long_break_minutes)"
+ fi
+ done
+ countdown $long_break_seconds "LONG BREAK TIME"
+ notify "FOCUS: $focus_minutes MINUTES" "Break time at $(current_time_plus_minutes $focus_minutes)"
+ done
+}
+
+## Help message
+if [ "$1" == "-h" ]; then
+ display_help
+ exit 0
+fi
+
+main $1 $2 $3 $4
diff --git a/.scripts/screen b/.scripts/screen
index 3a77b35..4f73cdb 100755
--- a/.scripts/screen
+++ b/.scripts/screen
@@ -55,6 +55,7 @@ onescreen() { # If only one output available or chosen.
postrun() { # Stuff to run to clean up.
{ killall -9 dunst ; setsid -f dunst ;} >/dev/null 2>&1 # Restart dunst to ensure proper location on screen
inputset # Refresh input remaps/settings
+ wallset # refresh wallpaper
}
# Get all possible displays
diff --git a/.scripts/term b/.scripts/term
new file mode 100755
index 0000000..184d341
--- /dev/null
+++ b/.scripts/term
@@ -0,0 +1,10 @@
+#!/bin/bash
+# current terminal
+
+if [[ "$*" == *"-t"* ]]; then
+ EXTRA="--working-directory=$HOME" # idk
+else
+ EXTRA="-tMelvins terminal"
+fi
+
+alacritty msg create-window "${EXTRA}" $@
diff --git a/.scripts/wallset b/.scripts/wallset
new file mode 100755
index 0000000..f6a39fc
--- /dev/null
+++ b/.scripts/wallset
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+hsetroot -cover $HOME/.scripts/wall.png
diff --git a/.scripts/weather b/.scripts/weather
index e662db1..345e702 100755
--- a/.scripts/weather
+++ b/.scripts/weather
@@ -6,9 +6,9 @@ CACHE_ONELINE=$WEATHER_CACHE_DIR"/current_weather_oneline.txt"
TIME=""
OPTION=$2
-usage () {
- echo "Usage: $0 (help|update|show|get|reload|full|dark|text) [:help|p|q]"
- echo " help : show this page
+usage() {
+ echo "Usage: $0 (help|update|show|get|reload|full|dark|text) [:help|p|q]"
+ echo " help : show this page
show : show picture according to time
get : get image from wttr.in
reload : get and show
@@ -18,47 +18,53 @@ usage () {
example: weather f 'Kitchener_0pq'
weather f moon
" >&2
- exit 0
+ exit 0
}
onlyprinttext() {
- info=$(cat $CACHE_ONELINE)
- case $info in
- *DOCTYPE*) echo " n/a";;
- *) echo $info ;;
- esac
+ info=$(cat $CACHE_ONELINE)
+ case $info in
+ *DOCTYPE*) echo " n/a" ;;
+ *) echo $info ;;
+ esac
}
get_image() {
- hasnet || exit 1
- curl -s 'wttr.in/Tübingen_1pq.png' > $CACHEFILE
- curl -s 'wttr.in/?format=%t' > $CACHE_ONELINE
+ hasnet || exit 1
+ curl -s 'wttr.in/Tübingen_1pq.png' >$CACHEFILE
+ curl -s 'wttr.in/Tübingen?format=%t' >$CACHE_ONELINE
}
print_detail() {
- echo curl -s "wttr.in/"$OPTION
- curl -s "wttr.in"/$OPTION
+ echo curl -s "wttr.in/"$OPTION
+ curl -s "wttr.in"/$OPTION
}
show_image() {
- if [ ! -e $CACHEFILE ]; then
- get_image
- fi
+ if [ ! -e $CACHEFILE ]; then
+ get_image
+ fi
- n30f -t weather $CACHEFILE
+ n30f -t weather $CACHEFILE
}
# main
if [ ! -d $WEATHER_CACHE_DIR ]; then
- mkdir $WEATHER_CACHE_DIR
- get_image
+ mkdir $WEATHER_CACHE_DIR
+ get_image
fi
-case "$1" in
- h|-h*|--h*) usage ;;
- show|s) show_image ;;
- get|g) get_image ;;
- reload|r) get_image && show_image ;;
- full|f) print_detail; OPTION=$2;;
- text|t) onlyprinttext;;
- *) onlyprinttext; usage;;
+case "$1" in
+h | -h* | --h*) usage ;;
+show | s) show_image ;;
+get | g) get_image ;;
+reload | r) get_image && show_image ;;
+full | f)
+ print_detail
+ OPTION=$2
+ ;;
+text | t) onlyprinttext ;;
+*)
+ onlyprinttext
+ usage
+ ;;
esac