
Ubuntu日本語フォーラム

ログインしていません。
10.04 Lucidでログアウト時の効果音を鳴らす事はできるでしょうか?
自分なりに調べてみると
http://ubuntuforums.org/showthread.php?t=1071525 の記事にある
/etc/gdm/PostSession/Default ファイルの'exit 0' の前に
/usr/bin/canberra-gtk-play --id="desktop-logout" を追記する方法を
試したところ、9.10 Karmicでは鳴りましたが、10.04では鳴りませんでした。
設定方法がありましたらご教示お願いいたします。
オフライン
暫定でbashがログアウトする際直前に実行されるファイルに記してみたら鳴りました。
~/.bash_logoutファイル
# ~/.bash_logout: executed by bash(1) when login shell exits.
# when leaving the console clear the screen to increase privacy
aplay usr/share/sounds/ubuntu/stereo/desktop-logout.ogg
if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi
他に設定方法ないでしょうか?
オフライン
#2の方法でログアウト音が一度は鳴ったのですがその後、鳴らなくなりました。
オフライン