This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env zsh | |
| function usage() { | |
| cat <<EOF | |
| USAGE i3-xephyr start|stop|restart|run | |
| start Start nested i3 in xephyr | |
| stop Stop xephyr | |
| restart reload i3 in xephyr | |
| run run command in nested i3 | |
| EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Report a Bug</title> | |
| <style type="text/css"> | |
| /* apply a natural box layout model to all elements */ | |
| *, *:before, *:after { | |
| -moz-box-sizing: border-box; | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -------------------- imports -------------------- | |
| --necessary | |
| import XMonad | |
| import qualified XMonad.StackSet as W | |
| import qualified Data.Map as M | |
| import System.Exit | |
| import Graphics.X11.Xlib | |
| import System.IO (Handle, hPutStrLn) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| atom_WM_TAKE_FOCUS :: | |
| X Atom | |
| atom_WM_TAKE_FOCUS = | |
| getAtom "WM_TAKE_FOCUS" | |
| takeFocusX :: | |
| Window | |
| -> X () | |
| takeFocusX w = | |
| withWindowSet . const $ do |
NewerOlder