commit - 550f8a99501b5c3da55db695f0c1e9cf9886c42e
commit + 9c8821a84e92c4ceb948bd14259d6519f7c2a307
blob - 0feff2eab7eeed776d0b24f30c480b36896208fd
blob + c6dd9c0f940cc061ecf8614a248f3ef9765d2f68
--- bxwm.c
+++ bxwm.c
focus_prev();
} else if (strcmp(buffer, "close_window") == 0) {
close_window(focused_client);
- } else if (strcmp(buffer, "spawn_terminal") == 0) {
- spawn(TERMINAL);
- } else if (strcmp(buffer, "spawn_launcher") == 0) {
- spawn(LAUNCHPROGRAM);
} else if (strcmp(buffer, "quit") == 0) {
running = 0;
} else if (strncmp(buffer, "view ", 5) == 0) {
blob - 902814f3ba19550f66f2b36d9e6b5606690156d5
blob + fad9623083be4fcec5fd9e98d7d8a55443c1ce36
--- config.def.h
+++ config.def.h
/* Commands */
#define STATUSBAR "$HOME/.local/bin/bxbar"
-#define TERMINAL "/usr/local/bin/st"
-#define LAUNCHPROGRAM "/usr/local/bin/st -e $HOME/.local/bin/launchprogram"
-/* Modifiers */
-#define MODKEY Mod1Mask /* Alt */
-#define MOD2 ControlMask /* Ctrl */
-
/* Workspaces */
#define NUM_WORKSPACES 10
#define INITIAL_WORKSPACE 0