├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.def.h ├── config.mk ├── drw.c ├── drw.h ├── dusk.1 ├── dusk.c ├── dusk.cfg ├── dusk.desktop ├── duskc.c ├── lib ├── attachx.c ├── attachx.h ├── autostart.c ├── autostart.h ├── bar.c ├── bar.h ├── bar_alpha.c ├── bar_alpha.h ├── bar_config_error.c ├── bar_config_error.h ├── bar_flexwintitle.c ├── bar_flexwintitle.h ├── bar_indicators.c ├── bar_indicators.h ├── bar_ltsymbol.c ├── bar_ltsymbol.h ├── bar_powerline.c ├── bar_powerline.h ├── bar_status2d.c ├── bar_status2d.h ├── bar_systray.c ├── bar_systray.h ├── bar_wintitle_floating.c ├── bar_wintitle_floating.h ├── bar_wintitle_hidden.c ├── bar_wintitle_hidden.h ├── bar_wintitle_single.c ├── bar_wintitle_single.h ├── bar_wintitle_sticky.c ├── bar_wintitle_sticky.h ├── bar_wintitleactions.c ├── bar_wintitleactions.h ├── bar_workspaces.c ├── bar_workspaces.h ├── bar_wspreview.c ├── bar_wspreview.h ├── cfacts.c ├── cfacts.h ├── clientopacity.c ├── clientopacity.h ├── conf.c ├── cyclelayouts.c ├── cyclelayouts.h ├── dbus.c ├── dbus.h ├── dbus_client.c ├── dbus_client.h ├── dbus_server.c ├── dbus_server.h ├── decorationhints.c ├── decorationhints.h ├── dragcfact.c ├── dragcfact.h ├── dragfact.c ├── dragfact.h ├── dragmfact.c ├── dragmfact.h ├── dragwfact.c ├── dragwfact.h ├── ewmh.c ├── ewmh.h ├── fakefullscreenclient.c ├── fakefullscreenclient.h ├── flags.c ├── flags.h ├── floatpos.c ├── floatpos.h ├── focusdir.c ├── focusdir.h ├── focusmaster.c ├── focusmaster.h ├── focusurgent.c ├── focusurgent.h ├── func.c ├── func.h ├── group.c ├── group.h ├── include.c ├── include.h ├── inplacerotate.c ├── inplacerotate.h ├── ipc.h ├── killunsel.c ├── killunsel.h ├── layout_flextile-deluxe.c ├── layout_flextile-deluxe.h ├── lookup.c ├── lookup.h ├── mark.c ├── mark.h ├── maximize.c ├── maximize.h ├── movemouse.c ├── movemouse.h ├── nomodbuttons.c ├── nomodbuttons.h ├── placedir.c ├── placedir.h ├── placemouse.c ├── placemouse.h ├── push.c ├── push.h ├── renamed_scratchpads.c ├── renamed_scratchpads.h ├── resizemouse.c ├── resizemouse.h ├── restartsig.c ├── restartsig.h ├── riodraw.c ├── riodraw.h ├── rotatestack.c ├── rotatestack.h ├── savefloats.c ├── savefloats.h ├── semi_scratchpads.c ├── semi_scratchpads.h ├── setborderpx.c ├── setborderpx.h ├── settitle.c ├── settitle.h ├── sortscreens.c ├── sortscreens.h ├── stacker.c ├── stacker.h ├── sticky.c ├── sticky.h ├── swallow.c ├── swallow.h ├── swallowmouse.c ├── swallowmouse.h ├── switchcol.c ├── switchcol.h ├── togglefullscreen.c ├── togglefullscreen.h ├── transfer.c ├── transfer.h ├── transferall.c ├── transferall.h ├── unfloatvisible.c ├── unfloatvisible.h ├── vanitygaps.c ├── vanitygaps.h ├── warp.c ├── warp.h ├── winicon.c ├── winicon.h ├── workspace.c ├── workspace.h ├── x11_debug.c ├── x11_debug.h ├── xban.c ├── xban.h ├── xrdb.c ├── xrdb.h ├── yajl_dumps.c └── yajl_dumps.h ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/README.md -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/config.def.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/config.mk -------------------------------------------------------------------------------- /drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/drw.c -------------------------------------------------------------------------------- /drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/drw.h -------------------------------------------------------------------------------- /dusk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/dusk.1 -------------------------------------------------------------------------------- /dusk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/dusk.c -------------------------------------------------------------------------------- /dusk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/dusk.cfg -------------------------------------------------------------------------------- /dusk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/dusk.desktop -------------------------------------------------------------------------------- /duskc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/duskc.c -------------------------------------------------------------------------------- /lib/attachx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/attachx.c -------------------------------------------------------------------------------- /lib/attachx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/attachx.h -------------------------------------------------------------------------------- /lib/autostart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/autostart.c -------------------------------------------------------------------------------- /lib/autostart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/autostart.h -------------------------------------------------------------------------------- /lib/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar.c -------------------------------------------------------------------------------- /lib/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar.h -------------------------------------------------------------------------------- /lib/bar_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_alpha.c -------------------------------------------------------------------------------- /lib/bar_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_alpha.h -------------------------------------------------------------------------------- /lib/bar_config_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_config_error.c -------------------------------------------------------------------------------- /lib/bar_config_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_config_error.h -------------------------------------------------------------------------------- /lib/bar_flexwintitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_flexwintitle.c -------------------------------------------------------------------------------- /lib/bar_flexwintitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_flexwintitle.h -------------------------------------------------------------------------------- /lib/bar_indicators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_indicators.c -------------------------------------------------------------------------------- /lib/bar_indicators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_indicators.h -------------------------------------------------------------------------------- /lib/bar_ltsymbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_ltsymbol.c -------------------------------------------------------------------------------- /lib/bar_ltsymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_ltsymbol.h -------------------------------------------------------------------------------- /lib/bar_powerline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_powerline.c -------------------------------------------------------------------------------- /lib/bar_powerline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_powerline.h -------------------------------------------------------------------------------- /lib/bar_status2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_status2d.c -------------------------------------------------------------------------------- /lib/bar_status2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_status2d.h -------------------------------------------------------------------------------- /lib/bar_systray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_systray.c -------------------------------------------------------------------------------- /lib/bar_systray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_systray.h -------------------------------------------------------------------------------- /lib/bar_wintitle_floating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_floating.c -------------------------------------------------------------------------------- /lib/bar_wintitle_floating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_floating.h -------------------------------------------------------------------------------- /lib/bar_wintitle_hidden.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_hidden.c -------------------------------------------------------------------------------- /lib/bar_wintitle_hidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_hidden.h -------------------------------------------------------------------------------- /lib/bar_wintitle_single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_single.c -------------------------------------------------------------------------------- /lib/bar_wintitle_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_single.h -------------------------------------------------------------------------------- /lib/bar_wintitle_sticky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_sticky.c -------------------------------------------------------------------------------- /lib/bar_wintitle_sticky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitle_sticky.h -------------------------------------------------------------------------------- /lib/bar_wintitleactions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitleactions.c -------------------------------------------------------------------------------- /lib/bar_wintitleactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wintitleactions.h -------------------------------------------------------------------------------- /lib/bar_workspaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_workspaces.c -------------------------------------------------------------------------------- /lib/bar_workspaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_workspaces.h -------------------------------------------------------------------------------- /lib/bar_wspreview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wspreview.c -------------------------------------------------------------------------------- /lib/bar_wspreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/bar_wspreview.h -------------------------------------------------------------------------------- /lib/cfacts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/cfacts.c -------------------------------------------------------------------------------- /lib/cfacts.h: -------------------------------------------------------------------------------- 1 | static void setcfact(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/clientopacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/clientopacity.c -------------------------------------------------------------------------------- /lib/clientopacity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/clientopacity.h -------------------------------------------------------------------------------- /lib/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/conf.c -------------------------------------------------------------------------------- /lib/cyclelayouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/cyclelayouts.c -------------------------------------------------------------------------------- /lib/cyclelayouts.h: -------------------------------------------------------------------------------- 1 | static void cyclelayout(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dbus.c -------------------------------------------------------------------------------- /lib/dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dbus.h -------------------------------------------------------------------------------- /lib/dbus_client.c: -------------------------------------------------------------------------------- 1 | #include "dbus.c" 2 | -------------------------------------------------------------------------------- /lib/dbus_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dbus_client.h -------------------------------------------------------------------------------- /lib/dbus_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dbus_server.c -------------------------------------------------------------------------------- /lib/dbus_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dbus_server.h -------------------------------------------------------------------------------- /lib/decorationhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/decorationhints.c -------------------------------------------------------------------------------- /lib/decorationhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/decorationhints.h -------------------------------------------------------------------------------- /lib/dragcfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dragcfact.c -------------------------------------------------------------------------------- /lib/dragcfact.h: -------------------------------------------------------------------------------- 1 | static void dragcfact(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/dragfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dragfact.c -------------------------------------------------------------------------------- /lib/dragfact.h: -------------------------------------------------------------------------------- 1 | static void dragfact(const Arg *arg); 2 | 3 | -------------------------------------------------------------------------------- /lib/dragmfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dragmfact.c -------------------------------------------------------------------------------- /lib/dragmfact.h: -------------------------------------------------------------------------------- 1 | static void dragmfact(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/dragwfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/dragwfact.c -------------------------------------------------------------------------------- /lib/dragwfact.h: -------------------------------------------------------------------------------- 1 | static void dragwfact(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/ewmh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/ewmh.c -------------------------------------------------------------------------------- /lib/ewmh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/ewmh.h -------------------------------------------------------------------------------- /lib/fakefullscreenclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/fakefullscreenclient.c -------------------------------------------------------------------------------- /lib/fakefullscreenclient.h: -------------------------------------------------------------------------------- 1 | static void togglefakefullscreen(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/flags.c -------------------------------------------------------------------------------- /lib/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/flags.h -------------------------------------------------------------------------------- /lib/floatpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/floatpos.c -------------------------------------------------------------------------------- /lib/floatpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/floatpos.h -------------------------------------------------------------------------------- /lib/focusdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/focusdir.c -------------------------------------------------------------------------------- /lib/focusdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/focusdir.h -------------------------------------------------------------------------------- /lib/focusmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/focusmaster.c -------------------------------------------------------------------------------- /lib/focusmaster.h: -------------------------------------------------------------------------------- 1 | static void focusmaster(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/focusurgent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/focusurgent.c -------------------------------------------------------------------------------- /lib/focusurgent.h: -------------------------------------------------------------------------------- 1 | static void focusurgent(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/func.c -------------------------------------------------------------------------------- /lib/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/func.h -------------------------------------------------------------------------------- /lib/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/group.c -------------------------------------------------------------------------------- /lib/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/group.h -------------------------------------------------------------------------------- /lib/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/include.c -------------------------------------------------------------------------------- /lib/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/include.h -------------------------------------------------------------------------------- /lib/inplacerotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/inplacerotate.c -------------------------------------------------------------------------------- /lib/inplacerotate.h: -------------------------------------------------------------------------------- 1 | static void inplacerotate(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/ipc.h -------------------------------------------------------------------------------- /lib/killunsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/killunsel.c -------------------------------------------------------------------------------- /lib/killunsel.h: -------------------------------------------------------------------------------- 1 | static void killunsel(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/layout_flextile-deluxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/layout_flextile-deluxe.c -------------------------------------------------------------------------------- /lib/layout_flextile-deluxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/layout_flextile-deluxe.h -------------------------------------------------------------------------------- /lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/lookup.c -------------------------------------------------------------------------------- /lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/lookup.h -------------------------------------------------------------------------------- /lib/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/mark.c -------------------------------------------------------------------------------- /lib/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/mark.h -------------------------------------------------------------------------------- /lib/maximize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/maximize.c -------------------------------------------------------------------------------- /lib/maximize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/maximize.h -------------------------------------------------------------------------------- /lib/movemouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/movemouse.c -------------------------------------------------------------------------------- /lib/movemouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/movemouse.h -------------------------------------------------------------------------------- /lib/nomodbuttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/nomodbuttons.c -------------------------------------------------------------------------------- /lib/nomodbuttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/nomodbuttons.h -------------------------------------------------------------------------------- /lib/placedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/placedir.c -------------------------------------------------------------------------------- /lib/placedir.h: -------------------------------------------------------------------------------- 1 | static void placedir(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/placemouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/placemouse.c -------------------------------------------------------------------------------- /lib/placemouse.h: -------------------------------------------------------------------------------- 1 | static void placemouse(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/push.c -------------------------------------------------------------------------------- /lib/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/push.h -------------------------------------------------------------------------------- /lib/renamed_scratchpads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/renamed_scratchpads.c -------------------------------------------------------------------------------- /lib/renamed_scratchpads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/renamed_scratchpads.h -------------------------------------------------------------------------------- /lib/resizemouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/resizemouse.c -------------------------------------------------------------------------------- /lib/resizemouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/resizemouse.h -------------------------------------------------------------------------------- /lib/restartsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/restartsig.c -------------------------------------------------------------------------------- /lib/restartsig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/restartsig.h -------------------------------------------------------------------------------- /lib/riodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/riodraw.c -------------------------------------------------------------------------------- /lib/riodraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/riodraw.h -------------------------------------------------------------------------------- /lib/rotatestack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/rotatestack.c -------------------------------------------------------------------------------- /lib/rotatestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/rotatestack.h -------------------------------------------------------------------------------- /lib/savefloats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/savefloats.c -------------------------------------------------------------------------------- /lib/savefloats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/savefloats.h -------------------------------------------------------------------------------- /lib/semi_scratchpads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/semi_scratchpads.c -------------------------------------------------------------------------------- /lib/semi_scratchpads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/semi_scratchpads.h -------------------------------------------------------------------------------- /lib/setborderpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/setborderpx.c -------------------------------------------------------------------------------- /lib/setborderpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/setborderpx.h -------------------------------------------------------------------------------- /lib/settitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/settitle.c -------------------------------------------------------------------------------- /lib/settitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/settitle.h -------------------------------------------------------------------------------- /lib/sortscreens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/sortscreens.c -------------------------------------------------------------------------------- /lib/sortscreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/sortscreens.h -------------------------------------------------------------------------------- /lib/stacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/stacker.c -------------------------------------------------------------------------------- /lib/stacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/stacker.h -------------------------------------------------------------------------------- /lib/sticky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/sticky.c -------------------------------------------------------------------------------- /lib/sticky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/sticky.h -------------------------------------------------------------------------------- /lib/swallow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/swallow.c -------------------------------------------------------------------------------- /lib/swallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/swallow.h -------------------------------------------------------------------------------- /lib/swallowmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/swallowmouse.c -------------------------------------------------------------------------------- /lib/swallowmouse.h: -------------------------------------------------------------------------------- 1 | static void swallowmouse(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/switchcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/switchcol.c -------------------------------------------------------------------------------- /lib/switchcol.h: -------------------------------------------------------------------------------- 1 | static void switchcol(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/togglefullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/togglefullscreen.c -------------------------------------------------------------------------------- /lib/togglefullscreen.h: -------------------------------------------------------------------------------- 1 | static void togglefullscreen(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/transfer.c -------------------------------------------------------------------------------- /lib/transfer.h: -------------------------------------------------------------------------------- 1 | static void transfer(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/transferall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/transferall.c -------------------------------------------------------------------------------- /lib/transferall.h: -------------------------------------------------------------------------------- 1 | static void transferall(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/unfloatvisible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/unfloatvisible.c -------------------------------------------------------------------------------- /lib/unfloatvisible.h: -------------------------------------------------------------------------------- 1 | static void unfloatvisible(const Arg *arg); 2 | -------------------------------------------------------------------------------- /lib/vanitygaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/vanitygaps.c -------------------------------------------------------------------------------- /lib/vanitygaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/vanitygaps.h -------------------------------------------------------------------------------- /lib/warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/warp.c -------------------------------------------------------------------------------- /lib/warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/warp.h -------------------------------------------------------------------------------- /lib/winicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/winicon.c -------------------------------------------------------------------------------- /lib/winicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/winicon.h -------------------------------------------------------------------------------- /lib/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/workspace.c -------------------------------------------------------------------------------- /lib/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/workspace.h -------------------------------------------------------------------------------- /lib/x11_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/x11_debug.c -------------------------------------------------------------------------------- /lib/x11_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/x11_debug.h -------------------------------------------------------------------------------- /lib/xban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/xban.c -------------------------------------------------------------------------------- /lib/xban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/xban.h -------------------------------------------------------------------------------- /lib/xrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/xrdb.c -------------------------------------------------------------------------------- /lib/xrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/xrdb.h -------------------------------------------------------------------------------- /lib/yajl_dumps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/yajl_dumps.c -------------------------------------------------------------------------------- /lib/yajl_dumps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/lib/yajl_dumps.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakkeby/dusk/HEAD/util.h --------------------------------------------------------------------------------