Hi there,
Skype just released version 4.3 for linux. You can read this article from OMG Ubuntu! to see what’s new in 4.3
Long story short:
- native notifications
- UI improvements (new toolbar, better login screen, design changes)
- floating widget for Call
- cloud based Group Chat
- support for PulseAudio 3.0 and 4.0
Currently, the AUR “multilib/skype” package is not upgraded to 4.3. If you don’t wish to wait, here’s what you must do:
- Download Skype -> http://www.skype.com/go/linux (Choose “Dynamic” from distribution dropdown)
- Extract the archive
12345cd Downloadstar -xjf skype-4.3.* - Move the contents of the extracted folder to /opt/skype
12345sudo mkdir /opt/skypesudo mv skype-4.3.*/* /opt/skype - Edit
/usr/bin/skype , and change the
exec command path to
exec "/opt/skype/skype" "$@"
12345678910111213141516#!/bin/bashLIBDIR="/usr/lib32"if [[ -e "$LIBDIR/libv4l/v4l2convert.so" ]]; thenexport LD_PRELOAD="${LD_PRELOAD:+$LD_PRELOAD:}$LIBDIR/libv4l/v4l2convert.so"fiif [[ -e "/usr/share/skype/lib/libQtWebKit.so.4" ]]; thenexport LD_PRELOAD="${LD_PRELOAD:+$LD_PRELOAD:}/usr/share/skype/lib/libQtWebKit.so.4"fi# exec "$LIBDIR/skype/skype" "$@" # (old one)exec "/opt/skype/skype" "$@"