diff options
Diffstat (limited to 'modules/profile/xsession.dot.link')
-rwxr-xr-x | modules/profile/xsession.dot.link | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/profile/xsession.dot.link b/modules/profile/xsession.dot.link index ca1a774..4ff6389 100755 --- a/modules/profile/xsession.dot.link +++ b/modules/profile/xsession.dot.link @@ -50,6 +50,15 @@ if [ -f "$HOME/.Xmodmaps/$HOSTNAME" ]; then xmodmap $HOME/.Xmodmaps/$HOSTNAME fi +# Fix mumble configuration, which varies depending on machine audio +if [ -f "$HOME/.config/Mumble/Mumble-$HOSTNAME.conf" ]; then + ( + cd $HOME/.config/Mumble + mv Mumble.conf Mumble-$HOSTNAME.conf.backup + ln -s Mumble-$HOSTNAME.conf Mumble.conf + ) +fi + # Execute window manager if [ "$OSVERSION" = "7" ]; then # See https://bugzilla.redhat.com/show_bug.cgi?id=783568 |