> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# WunderlistUX: Linux Client for Wunderlist
- URL: https://itsfoss.com/linux-client-wunderlist/
- Published: 2016-11-03T06:29:48.000Z
- Updated: 2016-11-03T06:29:48.000Z
- Author: Munif Tanjim
- Tags: #Import 2022-12-26 08:27

Are you a [Wunderlist](https://www.wunderlist.com/?ref=itsfoss.com) user? There is a brand new but unofficial Linux client for it – WunderlistUX.

Wunderlist is one of the popular [To-Do list](https://itsfoss.com/go-for-it-to-do-app-in-linux/) and tasks applications. But like so many other applications it lacks a Linux client, though they have clients for almost every other platform. WunderlistUX is created in order to bridge that gap.

## [WunderlistUX](https://github.com/edipox/wunderlistux/?ref=itsfoss.com)

It is not a fully native Linux application. Instead, WunderlistUX is just an [Electron](http://electron.atom.io/?ref=itsfoss.com) wrapper around the official web-app. Of course, you can always open the [Wunderlist web-app](https://www.wunderlist.com/webapp?ref=itsfoss.com) in a browser window but an Electron wrapper adds a native feeling on top of it. Moreover, Electron apps can integrate well with native menus and notifications.

![WunderlistUX with Ambiance theme](https://itsfoss.com/content/images/wordpress/2016/11/WunderlistUX-interface-small.jpg)

WunderlistUX with Ambiance theme

It works and looks just like the web-app. It is responsive as well. You can resize the window and it will adapt its interface.

![WunderlistUX with Arc theme](https://itsfoss.com/content/images/wordpress/2016/11/WunderlistUX-interface.jpg)

WunderlistUX with Arc theme and expanded

Initially, it supported only Elementary OS theme, but later added support for Ambiance, Arc and others.

If you are Wunderlist user and was looking for a Linux client, you can give it a try. And if you notice any bug, you can submit [an issue](https://github.com/edipox/wunderlistux/issues?ref=itsfoss.com) at the GitHub project.

#### Installing WunderlistUX

WunderlistUX is not yet available through PPA or as a DEB package. So, the installation process is, sort of, manual.

- Download the latest \*.tar.gz package from [GitHub release page](https://github.com/edipox/wunderlistux/releases?ref=itsfoss.com) according to your CPU Architecture.
Open a terminal in the download directory and run the following commands: 

```
sudo mkdir /opt/wunderlistux
sudo tar -zxf ./wunderlistux-*.tar.gz -C /opt/wunderlistux --strip-components=1
sudo sed -i 's/path\/to\/Wunderlistux-linux-x64/opt\/wunderlistux/g' /opt/wunderlistux/wunderlistux.desktop
sudo ln -s /opt/wunderlistux/wunderlistux.desktop /usr/share/applications/
```

And you’re done. 

If you want to simplify the process a little bit, you can use this [installation bash script](https://raw.githubusercontent.com/edipox/wunderlistux/master/bin/install.sh?ref=itsfoss.com):

```
wget -O - https://raw.githubusercontent.com/edipox/wunderlistux/master/bin/install.sh | sudo bash
```

That’s all. What do you think about this **Wunderlist client for Linux**? Let us know.