Minor changes

master
Taeyeon Mori 7 years ago
parent 791eb4be4c
commit b579e649cb
  1. 8
      bin/stayawake
  2. 4
      bin/unpack_shift
  3. 3
      texmf/tex/latex/intridea/beamerthemeintridea.sty
  4. 3
      texmf/tex/latex/local/jatools.sty
  5. 2
      zsh/zlogin
  6. 3
      zsh/zshrc

@ -1,5 +1,5 @@
#!/usr/bin/env python3 #!/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 # (c) 2015 by Taeyeon Mori
@ -9,13 +9,13 @@ import sys
import subprocess import subprocess
cmd = ["audacious", "--pause"] cmd = ["playerctl", "pause"]
beep = "/usr/share/sounds/freedesktop/stereo/complete.oga" beep = "/usr/share/sounds/freedesktop/stereo/bell.oga"
def run_task(): def run_task():
print("Rnunning ", cmd) print("Rnunning ", cmd)
subprocess.check_call(cmd) subprocess.Popen(cmd)

@ -35,7 +35,7 @@ for cx in "$@"; do
-*) -*)
sevenzip_args+=("$cx");; sevenzip_args+=("$cx");;
*) *)
args+=("$cx");; args+=("`realpath "$cx"`");;
esac esac
done done
@ -56,7 +56,7 @@ fi
$test_run || \ $test_run || \
convmv_args+=("--notest") convmv_args+=("--notest")
destination="`realpath "$destination"`" #destination="`realpath "$destination"`"
# Make temp dir to not impact other files # Make temp dir to not impact other files
if [ -d "$destination" ]; then if [ -d "$destination" ]; then

@ -16,7 +16,8 @@
\usepackage{texnansi} \usepackage{texnansi}
\usepackage{marvosym} \usepackage{marvosym}
\setbeamerfont{title}{size={\fontsize{48}{52}}} %\setbeamerfont{title}{size={\fontsize{48}{52}}}
\setbeamerfont{title}{size=\Huge}
\setbeamerfont{frametitle}{size=\huge} \setbeamerfont{frametitle}{size=\huge}
\setbeamerfont{copyright in head/foot}{size=\Tiny} \setbeamerfont{copyright in head/foot}{size=\Tiny}
\setbeamerfont{framenumber in head/foot}{size=\Tiny} \setbeamerfont{framenumber in head/foot}{size=\Tiny}

@ -21,4 +21,7 @@
\providecommand{\Ou}{\={O}} \providecommand{\Ou}{\={O}}
\providecommand{\ou}{\={o}} \providecommand{\ou}{\={o}}
% Other
\providecommand{\nakaten}{\textperiodcentered}
\endinput \endinput

@ -17,7 +17,7 @@
# Print a random, hopefully interesting, adage. # Print a random, hopefully interesting, adage.
if (( $+commands[fortune] )); then if (( $+commands[fortune] )); then
print -n "\e[34m" print -n "\e[34m"
fortune -a fortune -a | tee /tmp/`id -u`/fortune
print "\e[0m" print "\e[0m"
fi fi

@ -44,5 +44,8 @@ function gupf {
) )
} }
# rsync options
alias rsync="rsync -aXzPvihs -e ssh"
# Local overrides # Local overrides
[[ -e "$DOTFILES/zsh/zshrc.local" ]] && source "$DOTFILES/zsh/zshrc.local" [[ -e "$DOTFILES/zsh/zshrc.local" ]] && source "$DOTFILES/zsh/zshrc.local"

Loading…
Cancel
Save