# File wm.rb, line 340
    def unshift! *aClients
      aClients.flatten!
      return if aClients.empty?

      if target = clients.first
        target.focus!
      end

      setup_for_insertion! aClients.shift

      if top = clients.first
        top.ctl = 'swap down'
      end

      dst = self.index
      aClients.each do |c|
        c.ctl = "sendto #{dst}"
      end
    end