diff options
author | katherine <shmibs@shmibbles.me> | 2016-05-22 19:28:23 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-05-22 19:28:23 -0700 |
commit | 16af5ded1f0224e0f60ca1220338ac5c7194b761 (patch) | |
tree | 1aa81711ec44fcf37ac49d0f40caa6488051741a /.config/herbstluftwm | |
parent | f535d166bce3bdc6c597cac4fd58781a6b0d2f46 (diff) | |
download | dotfiles-16af5ded1f0224e0f60ca1220338ac5c7194b761.tar.gz |
fix backup font
how that escaped notice for so long i have no idea
Diffstat (limited to '.config/herbstluftwm')
-rwxr-xr-x | .config/herbstluftwm/panel.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/herbstluftwm/panel.sh b/.config/herbstluftwm/panel.sh index e8ae8c6..5f15044 100755 --- a/.config/herbstluftwm/panel.sh +++ b/.config/herbstluftwm/panel.sh @@ -110,7 +110,7 @@ update_winlist() { update_date() { echo -n "${sep}%{A:date:} \uE015 " - date +$'%a, %b %d, %H:%M:%S' | tr -d '\n' + LANG=ja_JP.UTF-8 date +$'%a, %b %d, %H:%M:%S' | tr -d '\n' echo " %{A}" } @@ -312,7 +312,7 @@ event_when() { while read command; do case "$command" in date) - notify-send "$(cal)" + notify-send "$(LANG=ja_JP.UTF-8 cal)" ;; mpd) ~/.config/herbstluftwm/mpc-status.sh |