aboutsummaryrefslogtreecommitdiff
path: root/src/server.zig
AgeCommit message (Collapse)AuthorFilesLines
2020-04-10Implement xdg-outputIsaac Freund1-6/+8
2020-04-10Implement initial layer shell supportIsaac Freund1-1/+49
exclusive zones and popups are still TODO
2020-04-08Fix environment of spawned processesIsaac Freund1-2/+2
std.ChildProcess isn't handling environment variables set at runtime properly, so just use libc directly.
2020-04-07Refactor keybindings to be runtime defined.Isaac Freund1-39/+5
2020-04-07Move commands to a separate fileIsaac Freund1-105/+22
2020-04-06Allow switching VTsIsaac Freund1-1/+3
2020-04-04Remove len field from ViewStackIsaac Freund1-8/+8
This is misleading as unmapped views should be ignored
2020-04-04Add a data structure to manage the view stackIsaac Freund1-2/+3
2020-04-02Implement tag assignmentIsaac Freund1-0/+36
There are a few bugs with this, but the core logic is sound
2020-04-01Implement switching between single tagsIsaac Freund1-0/+24
2020-03-29Make c import a little cleanerIsaac Freund1-1/+1
2020-03-29Handle timeout of transactions that take too longIsaac Freund1-1/+6
2020-03-29Pass self as immutable where possibleIsaac Freund1-1/+1
2020-03-29Swap bindngs for send to top and start terminalIsaac Freund1-15/+15
2020-03-29Only move view to top if neededIsaac Freund1-3/+5
2020-03-29Add keybind for adjusting master factorIsaac Freund1-4/+17
2020-03-28Add keybindings for changing master countIsaac Freund1-0/+14
2020-03-28Add keybind to move current focus to top of stackIsaac Freund1-17/+27
2020-03-28Remove references to old nameIsaac Freund1-3/+3
2020-03-27Implement basic xdg decoration managementIsaac Freund1-5/+9
2020-03-27Add keybind to spawn alacritty instanceIsaac Freund1-0/+7
2020-03-27Flesh out focus handling and add keybindsIsaac Freund1-11/+2
2020-03-25Correct a few function names to camelCaseIsaac Freund1-5/+5
2020-03-25Simplify initialization functionsIsaac Freund1-2/+1
2020-03-25Add Root structIsaac Freund1-61/+25
Server handles listening for wayland signals. It delegates input handling to Seat and output handling to Root.
2020-03-24Handle destruction of Server properlyIsaac Freund1-1/+1
2020-03-24Make function names camelCaseIsaac Freund1-1/+1
This conforms with the zig style guidelines: https://ziglang.org/documentation/master/#Style-Guide
2020-03-24Use Self = @This() in all structsIsaac Freund1-8/+10
This seems to be the idiomatic way to do things.
2020-03-24Make all things constIsaac Freund1-6/+6
The quest for idiomatic zig continues
2020-03-24Remove superfluous .*.Isaac Freund1-8/+8
I may be be slowly getting the hang of this language.
2020-03-24Get rid of [*c] pointersIsaac Freund1-4/+4
2020-03-24Rework things to stop invalidating pointersIsaac Freund1-23/+35
2020-03-23Get things compiling againIsaac Freund1-15/+23
2020-03-23Refactor xdg_shell handlingIsaac Freund1-3/+41
2020-03-23Refactor output handlingIsaac Freund1-1/+9
2020-03-23Rework ServerIsaac Freund1-28/+74
2020-03-22WIP massive refactorIsaac Freund1-0/+71