Compare commits

...

3 Commits

Author SHA1 Message Date
Dorian Wood e1b4630e57 Add dot_local/spells/executable_audiosplit.sh
Add dot_local/spells/executable_ediff.sh
2021-04-22 10:24:54 -04:00
Dorian Wood 9998b99815 Add dot_local/spells/executable_launchpolybar 2021-04-22 10:24:36 -04:00
Dorian Wood 045d4be20d Update dot_config/bspwm/executable_bspwmrc
Remove dot_config/polybar/executable_launch.sh
2021-04-22 10:24:21 -04:00
4 changed files with 19 additions and 2 deletions

View File

@ -4,6 +4,8 @@ pgrep -x sxhkd > /dev/null || sxhkd &
bspc monitor -d I II III IV V VI VII VIII IX X
bspc config normal_border_color #42395D
bspc config focused_border_color #C2FFDF
bspc config border_width 3
bspc config window_gap 5

View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
read -r -p "Input file: " INPUT
echo "$INPUT"
read -r -p "Start Time: " START
START="-ss ${START}"
echo "$START"
read -r -p "End Time: " END
END="-to ${END}"
echo "$END"
read -r -p "Output File: " OUTPUT
echo "$OUTPUT"

View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Simple script to send a merge command to emacs ediff
emacsclient --eval "(ediff \"$1\" \"$2\")"

View File

@ -8,5 +8,3 @@ while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch Polybar, using default config location ~/.config/polybar/config
polybar example &
echo "Polybar launched..."