Python Window Manager, Now With Twisted

And Now for the Big Event Loop

Last week I wrote about how to create a window manager in Python and posted code for a simple example window manager. The example I posted was about 260 lines long including comments. But if you want to write a window manager to suit your needs, it will quickly get bigger and more complicated. Last week, my event-handling code looked like this:

def handle_event(self):
    '''
    Wait for the next event and handle it.
    '''
    try:
        event = self.display.next_event()
    except Xlib.error.ConnectionClosedError:
        print >> sys.stderr, 'Display connection closed by server'
        raise KeyboardInterrupt

    if event.type in self.event_dispatch_table:
        handler = self.event_dispatch_table[event.type]
        handler(event)
    else:
        print 'unhandled event: {event}'.format(event=event)

The most important line is the call to self.display.next_event(). This next_event() function blocks until the next X event is received. But as your window manager gets more complicated, you’ll want to create your own events internal to the window manager, and you might event want to do something periodically (like updating a clock in the corner of your screen).

Before long, you’ll need to replace this one call to self.display.next_event() with something bigger and better and, well, bigger. To give a bit of perspective, the next_event() method in the Pointless Window Manager is 179 lines long.

Let me suggest an alternative to writing your own event loop.

Adding Twisted to the Equation

Twisted is an event driven Python framework primarily designed for networking. It comes complete with asynchronous scheduling and deferred tasks (Twisted provided the inspiration for the deferreds in MochiKit and Dojo). Since I’m already intimately familiar with Twisted because we use it for Trosnoth, it makes sense to let Twisted run the event loop for my window manager.

It turns out it’s not too difficult to use the Twisted reactor as my event loop. Display objects in python-xlib provide access to the file descriptor of the underlying socket, and Twisted’s default reactor provides a method for registering an object to be notified when a file descriptor is ready for reading.  Read on to get a copy of the actual code.

Dependencies

As with last week, you’ll need Python 2.6 or 2.7 and the Xlib module for Python. This week you’ll also need Twisted installed.

Download the Code

I hereby release the following source code into the public domain. You may download, modify, use or redistribute it freely. You can download this simple Twisted window manager here (zipped Python file, ~280 lines of code including comments).

If you’re planning on writing your own window manager, I recommend reading my debugging tips at the end of last week’s post.

Posted in midlength | Tagged , , , , , | Comments Off on Python Window Manager, Now With Twisted

How to Write a Window Manager in Python

Window Manager of Your Dreams

I wrote a few months ago about a bunch of different window managers which I’d investigated. In this post, I’ll present the source code for a new, very basic, window manager written entirely in Python. My purpose was to make the window manager as simple as possible so that you can play with the code and turn it into the window manager of your dreams!

What it Does

This window manager only does a few things:

  • if you press Mod1+Enter, a new xterm will be opened (Mod1 normally means Alt);
  • if you right-click on a window, that window will be raised to the top; and
  • if you right-click on a window then drag, you will move that window.

This was the simplest useful window manager I could imagine.

Dependencies

In order to run this code, you’ll need:

  • Python 2.6 or 2.7
  • The Xlib module for Python (the python-xlib package in Debian/Ubuntu)

For testing, I also recommend you get Xephyr (xserver-xephyr package).

Download the Code

I hereby release the following source code into the public domain. You may download, modify, use or redistribute it freely. You can download this simple window manager here (zipped Python file, ~260 lines of code including comments).

For more background information on writing and testing a window manager, read on.

How I Figured it Out

Reference Material: PLWM

In order to get this far, I had to play around for a while with the Pointless Window Manager (PLWM). PLWM is a window manager framework written in Python, and hasn’t been touched since 2004. It was the best Python example WM I could find to play with because it neither requires you to compile the old versions of a whole bunch of libraries (as PyWM does), nor does it require you to compile versions of libraries newer than those currently shipped with Ubuntu (as Qtile does). It relies only on the Python X Library which is easy to come by.

PLWM has an interesting design, and as you dive into the source code, it’s worth reading the documentation or you risk getting rather confused. It’s also worth noting that the PLWM source code uses some incantations which have fallen out of fashion since PLWM was last updated in 2004 (mostly because newer versions of Python introduce easier or clearer ways of doing things).

I spent a bit of time trying to write a PLWM configuration that I liked, and several times I became so frustrated that I put it to one side. Finally, using PLWM as a reference, I decided to write the simple window manager you saw above.

Another Reference: Disowning a Child Process in Python

While I’m mentioning the reference material I used, I should point out that I looked at a recipe on ActiveState to help me figure out how to disown the child xterms that are created when you press Alt+Enter. The system() method in the code above executes a command as a detached process with no controlling terminal and stdin, stdout and stderr all connected to /dev/null. I basically took the recipe for creating a daemon and used it with some extra exception handling and an execve() call after daemonising.

Debugging a Window Manager

Debugging with Xephyr

When debugging a window manager, I found Xephyr to be very useful. Basically, Xephyr creates a new X display that’s nested inside your current display. So you can make your window manager manage the Xephyr display while you’re still working with your gnome/kde/i3 window manager, and not be afraid of dire consequences if your test window manager crashes.

I use it by starting Xephyr on display 1.

$ Xephyr -screen 1024x768 -br :1

Then in another terminal I start my window manager on the same display.

$ DISPLAY=:1 python simplewm.py

Running Multiple X Servers

If you don’t want to use Xephyr, a trick that I learnt from Linux Journal is to run a second x-server so that Ctrl+Alt+F7 displays your usual WM, and Ctrl+Alt+F8 displays your WM under test. To start a new X server on display 1 with simplewm as the window manager, go to one of the ttys (Ctrl+Alt+F1) and type:

$ xinit /usr/bin/python simplewm.py -- :1

Conclusion

This article should give you a starting point so you can get working on your own custom window manager written in Python. What are you waiting for?

Posted in midlength | Tagged , , , , , | 2 Comments

Social Debate

I posted the same thing on Google Buzz and on Facebook with rather different results.

Posted in short | Tagged , , , , , | Comments Off on Social Debate

The Book and The Crisis

Introduction

Not long ago I was on SU’s Camp Leaders’ Weekend. It was a great chance to meet leaders from other SU camps, worship God together, get high-quality training, and learn more about God from the guest speaker.

One session challenged me a lot. The presenter, Martin Thompson, suggested that the Christian church in Australia is in a time of crisis because it has lost its focus on the Bible, and thus church members form their worldviews based on secular culture without reference to the Bible.

In this post, I discuss why the Bible is so central to historical Christianity, then look at some of the research and references that were mentioned in the talk.

The Book

To protestant Christians, the Bible is the centre of everything we believe, and it is one of the primary ways that God speaks to us today. As J. I. Packer says in Concise Theology (1993), “What Scripture says, God says; for, in a manner comparable only to the deeper mystery of the Incarnation, the Bible is both fully human and fully divine. So all its manifold contents—histories, prophecies, poems, songs, wisdom writings, sermons, statistics, letters, and whatever else—should be received as from God, and all that Bible writers teach should be revered as God’s authoritative instruction. Christians should be grateful to God for the gift of his written Word, and conscientious in basing their faith and life entirely and exclusively upon it. Otherwise, we cannot ever honor or please him as he calls us to do.”

Jesus himself treated the Old Testament scriptures as instructions from God, and Paul wrote that the scriptures are a product of God’s Spirit. The teaching of the apostles about Jesus is also revealed by God’s Spirit, and has been regarded as such by the Christian church since its very beginnings. So if we are to be true to historical Christianity, the Bible comes from God, and must therefore dictate our worldview and, in turn, our beliefs.

As to how we know that today’s Bible is materially the same as the Bible of the early church, according to Josh McDowell in The New Evidence That Demands a Verdict (1999), we have over 5 000 manuscript copies of the New Testament, the first complete New Testament dating back to about A.D 325, which is 225 years after the original writing, and the first partial copy dating to about 50 years after the original writing. Since those 5 000 manuscripts all agree almost perfectly with modern copies, and all agree almost perfectly with one another it is not too much of a leap to suppose that they all agree with the original source.

The Church and the Culture

In Martin’s session, he drew concepts from a number of sources.

  • Francis Shaefer‘s book How Should We Then Live
    • Worldview → Beliefs → Values → Behaviour → Culture
    • Without a solid basis for our worldview (such as the Bible):
      Culture → Worldview
  • Walter Bruggemann‘s 19 Theses:
    • The dominant “script” in our culture is:
      technological, therapeutic, consumerist, individualistic
    • The Bible is:
      ragged, organic, elusive, enigmatic
  • An interview with Mark Sayers on the worldview of this generation:
    • to the modern worldview, the universe is morally insignificant—it has no moral centre, so everyone is a mini-god and life is about what I can experience
    • the church is catering to this dominant worldview—we behave as if salvation just means well-being
    • humans as gods destroy humanity

The Crisis

Martin presented some data from a recent study of Bible engagement in Christian churches across Australia. The conclusion? Young people in churches and church youth groups don’t read the Bible. To them it’s not relevant; they don’t engage with it and aren’t transformed by it.

But do you know what’s even scarier? The study went on to say that the young people lack modelling of engaging with the Bible, because youth leaders and youth pastors don’t read and apply the Bible.

The church is in a critical place. At best, we need to refocus and start intentionally teaching our people that the Bible is the living word of God, able to renew and transform us. At worst, we are heading down a path where the church becomes nothing more than a club, a social group which serves only to make us all feel good about ourselves.

The Response

Martin suggested that we need to push for a change in our churches. In particular, we need to relinquish the technological, therapeutic, consumerist, individualistic script written by our culture and articulate an alternative: the Bible.

What does that look like for you and in your church? I don’t know. For me it will mean being more intentional about reading and applying the Bible, and about talking to my Christian brothers and sisters about the Bible. Perhaps if Christians begin to see where the church is headed they will refocus themselves on God and his word.

When God calls us we, like Mary, need to respond to God by saying “I am the Lord’s servant. May it be to me as you have said.”

Posted in long | Tagged , , , , , , , , | Comments Off on The Book and The Crisis

tmux: Almost What I Want

I’ve spent a few hours playing around with tmux, which is a neat replacement for GNU screen. My conclusion: tmux is really neat, but it’s not quite what I want.

A bit about tmux

Tmux does pretty much everything that screen does, but tmux has an easy to understand configuration format, some nice defaults, and a clear and understandable man page.  In particular though, one thing that I like about tmux is that I can issue commands to tmux from the shell.  For instance, if I wanted to bind the F5 key to executing my favourite app in the background, this is the line I would put in my configuration file:

bind-key -n F5 run-shell /my/favourite/app

If I wanted to perform the same key binding from a shell within a tmux session, I would type:

$ tmux bind-key -n F5 run-shell /my/favourite/app

What I want it for

At the moment, I don’t actually want tmux for its terminal multiplexing abilities, nor for its ability to detach and reattach sessions. What I’m looking for at the moment is the ability to scroll through my terminal history, select text and copy it to the system clipboard. This is something I can do in most terminal emulators, but I want to be able to do it efficiently without moving my hands away from my keyboard.  The ability to use Vim-like key bindings would also be a bonus since I’m familiar with them.

What it does and doesn’t do

Using tmux, I can enter copy mode with the keyboard, scroll around, and copy things to the tmux clipboard. If I want to use Vim-like key bindings, I can issue the tmux command mode-keys vi.  I can use the bind-key command if I don’t quite like the default vi key bindings. If I install xsel, I can copy things from the tmux clipboard to the system clipboards using tmux show-buffer | xsel -pb. I can even set up a key binding so that I can enter copy mode with a single keystroke rather than having to press Ctrl+b [.  But you only have limited ability to remap keys within edit mode. For instance, in edit mode you can’t execute a shell command. So I can’t set things up so that the same keystroke which copies selected text to a tmux clipboard also copies to the system clipboard.  And this is a huge nuisance to me because the whole reason I was looking at tmux was to improve my efficiency when using a terminal.

Perhaps I’ll have to write my own.

Posted in midlength | Tagged , , , , | Comments Off on tmux: Almost What I Want