diff options
author | 2021-10-19 00:36:37 -0400 | |
---|---|---|
committer | 2021-10-19 00:36:37 -0400 | |
commit | 298f42fef8c1cb876c6596cbca3920a549a9a6d0 (patch) | |
tree | fa4b4754c2bcb1094898541f569b46d55e55f5d3 /.bashrc | |
parent | 7dd9938023b620a4e65b57a50d5414ac577abf0c (diff) | |
download | configs-298f42fef8c1cb876c6596cbca3920a549a9a6d0.tar.gz configs-298f42fef8c1cb876c6596cbca3920a549a9a6d0.tar.xz configs-298f42fef8c1cb876c6596cbca3920a549a9a6d0.zip |
add change-theme script
allows changing themes for future application instances as well as
currently-running ones on the fly. xterm and emacs have been tested
and are known to work so far.
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -60,7 +60,7 @@ HISTFILESIZE= # history. HISTCONTROL=ignoreboth # ignore a few very common commands and don't add them to history -HISTIGNORE='ls:l:s:g:[bf]g:history' +HISTIGNORE='ls:l:ll:s:g:[bf]g:history:da:li' HISTTIMEFORMAT='%F %T ' stty stop "" @@ -84,6 +84,9 @@ alias e="$EDITOR" alias se="SUDO_EDITOR=\"emacsclient\" sudo -e" alias s="startx" +alias da='change-theme dark' +alias li='change-theme light' + alias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg" complete -F _quilt_completion -o filenames dquilt |