summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Cargo.toml3
-rw-r--r--todos.org36
3 files changed, 4 insertions, 36 deletions
diff --git a/.gitignore b/.gitignore
index 264a638..38c9187 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/target
.direnv
.envrc
+*.log
diff --git a/Cargo.toml b/Cargo.toml
index 0bfdea5..3f9c9fe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,3 +7,6 @@ edition = "2021"
nix = { version = "0.29.0", features = ["signal"] }
xcb = { version = "1.4.0", features = ["xinerama"] }
xkeysym = "0.2.0"
+
+[features]
+debug = ["xcb/debug_atom_names"]
diff --git a/todos.org b/todos.org
deleted file mode 100644
index 65135b9..0000000
--- a/todos.org
+++ /dev/null
@@ -1,36 +0,0 @@
-* Deal with configurerequest better
-
-* Tag filtering
-
-* More tiling options
-
-* Mouse support
-
-* Support resizing
-
-* Fix focus changing bug
-
-seems to be to do with mouse grabbing?
-https://tronche.com/gui/x/xlib/events/window-entry-exit/
-https://tronche.com/gui/x/xlib/events/window-entry-exit/grab-ungrab.html
-alternatively: race condition w/ timing of events (check seq numbers)
-
-* Port over rest of keybinds
-
-* Port over rest of my own preferred patches
-
-** Autostart support
-
-** Cursor warping
-
-** Smart borders
-
-** Bottom stack
-
-* Don't use Vecs?
-
-* Figure out better configuration method?
-
-* Look at refactoring out kind of scuffed client access patterns
-
-* Read rest of EWMH spec and see what is missing