Skip to main content

Location aware application launcher

Project description

The dwim program is a location aware application launcher. To use it you are required to create a profile at ~/.dwimrc. This profile is a simple Python script that defines which applications you want to start automatically, in which order the applications should start and whether some applications should only be started when your computer is on a specific physical location. The location awareness works by matching a unique property of the network that your computer is connected to (the MAC address of your current network gateway).

Every time you run the dwim program your ~/.dwimrc profile is evaluated and your applications are started automatically. If you run dwim again it will not start duplicate instances of your applications, but when you quit an application and then rerun dwim the application will be started again.

Getting started

To get started you install the dwim package from PyPI:

$ pip install dwim

After installation you have access to the dwim program. Before you can use the program you need to create a profile, see the following section.

Creating a profile

To use dwim you need to create a profile at ~/.dwimrc. The profile is a simple Python script that defines which applications you want to start automatically, in which order the applications should start and whether some applications should only be started on a specific physical location. The profile script has access to functions provided by the dwim Python package. Please refer to the documentation for the available functions. The examples below show the most useful functions.

Starting your first program

If you’d like to get your feet wet with a simple example, try this:

launch_program('pidgin')

When you’ve created the above profile script and you run the dwim program it will start the Pidgin chat client on the first run. On the next run nothing will happen because Pidgin is already running.

Modifying the “is running” check

The default “is running” check comes down to the following shell command line:

# Replace `pidgin' with any program name.
pidof $(which pidgin)

This logic will not work for all programs. For example in my profile I start the Dropbox client using a wrapper script. Once the Dropbox client has been started the wrapper script terminates so the pidof check fails. The solution is to customize the “is running” check:

launch_program('dropbox start', is_running='pgrep -f "$HOME/.dropbox-dist/*/dropbox"')

The example above is for the Dropbox client, but the same principle can be applied to all other programs. The only trick is to find a shell command that can correctly tell whether the program is running. Unfortunately this part cannot be automated in a completely generic manner. The advanced profile example below contains more examples of defining custom pidof checks and pgrep -f checks.

Enabling location awareness

The first step to enabling location awareness is to add the following line to your profile:

determine_network_location()

Even if you don’t pass any information to this function it will still report your current gateway’s MAC address. This saves me from having to document the shell commands needed to do the same thing :-). Run the dwim command and take note of a line that looks like this:

We're not connected to a known network (unknown gateway MAC address 84:9c:a6:76:23:8e).

Now edit your profile and change the line you just added:

location = determine_network_location(home=['84:9c:a6:76:23:8e'])

When you now rerun dwim it will say:

We're connected to the home network.

So what did we just do? We took note of the current gateway’s MAC address and associated that MAC address with a location named “home”. In our profile we can now start programs on the condition that we’re connected to the home network:

if location == 'home':
   # Client for Music Player Daemon.
   launch_program('ario --minimized')
else:
   # Standalone music player.
   launch_program('rhythmbox')

The example profile below (my profile) contains a more advanced example combining multiple networks and networks with multiple gateways.

Example profile

I’ve been using variants of dwim (previously in the form of a Bash script :-) for years now so my profile has grown quite a bit. Because of this it may provide some interesting examples of things you can do:

# vim: fileencoding=utf-8

# ~/.dwimrc: Profile for dwim, my location aware application launcher.
# For more information please see https://github.com/xolox/python-dwim/.

# Standard library modules.
import os
import time

# Packages provided by dwim and its dependencies.
from executor import execute
from dwim import (determine_network_location, launch_program, LaunchStatus
                  set_random_background, wait_for_internet_connection)

# This is required for graphical Vim and gnome-terminal to have nicely
# anti-aliased fonts. See http://awesome.naquadah.org/wiki/Autostart.
if launch_program('gnome-settings-daemon') == LaunchStatus.started:

    # When my window manager is initially started I need to wait for a moment
    # before launching user programs because otherwise strange things can
    # happen, for example programs that place an icon in the notification area
    # might be started in the background without adding the icon, so there's
    # no way to access the program but `dwim' will never restart the program
    # because it's already running! ಠ_ಠ
    logger.debug("Sleeping for 10 seconds to give Awesome a moment to initialize ..")
    time.sleep(10)

# Determine the physical location of this computer by matching the MAC address
# of the gateway against a set of known MAC addresses. In my own copy I've
# documented which MAC addresses belong to which devices, but that doesn't seem
# very relevant for the outside world :-)
location = determine_network_location(home=['84:9C:A6:76:23:8E'],
                                      office=['00:15:C5:5F:92:79',
                                              'B6:25:B2:19:28:61',
                                              '00:18:8B:F8:AF:33'])

# Correctly configure my multi-monitor setup based on physical location.
if location == 'home':
    # At home I use a 24" ASUS monitor as my primary screen.
    # My MacBook Air sits to the left as the secondary screen.
    execute('xrandr --output eDP1 --auto --noprimary')
    execute('xrandr --output HDMI1 --auto --primary')
    execute('xrandr --output HDMI1 --right-of eDP1')
if location == 'work':
    # At work I use a 24" LG monitor as my primary screen.
    # My Asus Zenbook sits to the right as the secondary screen.
    execute('xrandr --output eDP1 --auto')
    execute('xrandr --output HDMI1 --auto')
    execute('xrandr --output HDMI1 --left-of eDP1')

# Set a random desktop background from my collection of wallpapers. I use the
# program `feh' for this because it supports my desktop environment / window
# manager (Awesome). You can install `feh' using `sudo apt-get install feh'.
set_random_background(command='feh --bg-scale {image}',
                      directory=os.path.expanduser('~/Pictures/Backgrounds'))

# Start my favorite programs.
launch_program('gvim')
launch_program('nm-applet')
launch_program('keepassx $HOME/Documents/Passwords/Personal.kdb -min -lock',
               is_running='pgrep -f "keepassx $HOME/Documents/Passwords/Personal.kdb"')
# I actually use three encrypted key passes, two of them for work. I omitted
# those here, but their existence explains the complex is_running command.
launch_program('fluxgui', is_running='pgrep -f $(which fluxgui)')

# The remaining programs require an active internet connection.
wait_for_internet_connection()

launch_program('chromium-browser', is_running='pidof /usr/lib/chromium-browser/chromium-browser')
launch_program('pidgin')
if location == 'home':
    # Mozilla Thunderbird is only useful at home (at work IMAPS port 993 is blocked).
    launch_program('thunderbird', is_running='pidof /usr/lib/thunderbird/thunderbird')
launch_program('dropbox start', is_running='pgrep -f "$HOME/.dropbox-dist/*/dropbox"')
launch_program('spotify')

Location awareness

The location awareness works by matching the MAC address of your current network gateway (your router). I’ve previously also used public IPv4 addresses but given the fact that most consumers will have a dynamic IP address I believe the gateway MAC access is the most stable unique property to match.

About the name

In programming culture the abbreviation DWIM stands for Do What I Mean. The linked Wikipedia article refers to Interlisp but I actually know the term from the world of Perl. The reason I chose this name for my application launcher is because I like to make computer systems anticipate what I want. Plugging in a network cable, booting my laptop and having all my commonly used programs (depending on my physical location) instantly available at startup is a great example of Do What I Mean if you ask me :-)

Contact

The latest version of dwim is available on PyPI and GitHub. The documentation is hosted on Read the Docs. For bug reports please create an issue on GitHub. If you have questions, suggestions, etc. feel free to send me an e-mail at peter@peterodding.com.

License

This software is licensed under the MIT license.

© 2014 Peter Odding.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dwim-0.2.tar.gz (11.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page