diff --git a/bin/stayawake b/bin/stayawake index 204471d..45bbf04 100755 --- a/bin/stayawake +++ b/bin/stayawake @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Sleep Timer for Aufio Books, inspired by some of the nice Android audiobook players +# Sleep Timer for Audio Books, inspired by some of the nice Android audiobook players # (c) 2015 by Taeyeon Mori @@ -9,13 +9,13 @@ import sys import subprocess -cmd = ["audacious", "--pause"] -beep = "/usr/share/sounds/freedesktop/stereo/complete.oga" +cmd = ["playerctl", "pause"] +beep = "/usr/share/sounds/freedesktop/stereo/bell.oga" def run_task(): print("Rnunning ", cmd) - subprocess.check_call(cmd) + subprocess.Popen(cmd) diff --git a/bin/unpack_shift b/bin/unpack_shift index 1501054..45dbebb 100755 --- a/bin/unpack_shift +++ b/bin/unpack_shift @@ -35,7 +35,7 @@ for cx in "$@"; do -*) sevenzip_args+=("$cx");; *) - args+=("$cx");; + args+=("`realpath "$cx"`");; esac done @@ -56,7 +56,7 @@ fi $test_run || \ convmv_args+=("--notest") -destination="`realpath "$destination"`" +#destination="`realpath "$destination"`" # Make temp dir to not impact other files if [ -d "$destination" ]; then diff --git a/texmf/tex/latex/intridea/beamerthemeintridea.sty b/texmf/tex/latex/intridea/beamerthemeintridea.sty index 13a2ed3..b328c44 100644 --- a/texmf/tex/latex/intridea/beamerthemeintridea.sty +++ b/texmf/tex/latex/intridea/beamerthemeintridea.sty @@ -16,7 +16,8 @@ \usepackage{texnansi} \usepackage{marvosym} -\setbeamerfont{title}{size={\fontsize{48}{52}}} +%\setbeamerfont{title}{size={\fontsize{48}{52}}} +\setbeamerfont{title}{size=\Huge} \setbeamerfont{frametitle}{size=\huge} \setbeamerfont{copyright in head/foot}{size=\Tiny} \setbeamerfont{framenumber in head/foot}{size=\Tiny} diff --git a/texmf/tex/latex/local/jatools.sty b/texmf/tex/latex/local/jatools.sty index 37b5450..d72df45 100644 --- a/texmf/tex/latex/local/jatools.sty +++ b/texmf/tex/latex/local/jatools.sty @@ -21,4 +21,7 @@ \providecommand{\Ou}{\={O}} \providecommand{\ou}{\={o}} +% Other +\providecommand{\nakaten}{\textperiodcentered} + \endinput \ No newline at end of file diff --git a/zsh/zlogin b/zsh/zlogin index d3145be..058c068 100644 --- a/zsh/zlogin +++ b/zsh/zlogin @@ -17,7 +17,7 @@ # Print a random, hopefully interesting, adage. if (( $+commands[fortune] )); then print -n "\e[34m" - fortune -a + fortune -a | tee /tmp/`id -u`/fortune print "\e[0m" fi diff --git a/zsh/zshrc b/zsh/zshrc index d440174..1c10119 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -44,5 +44,8 @@ function gupf { ) } +# rsync options +alias rsync="rsync -aXzPvihs -e ssh" + # Local overrides [[ -e "$DOTFILES/zsh/zshrc.local" ]] && source "$DOTFILES/zsh/zshrc.local"