summaryrefslogtreecommitdiff
path: root/src/globals.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-10-15 22:26:19 +0000
committersabetts <sabetts>2003-10-15 22:26:19 +0000
commit0064759b73fd747eda2b28d5d89ab7d5c3cacba9 (patch)
tree31c46c07f0cd495e02958c5693001c5cd70398ff /src/globals.c
parentf6780b3be38416b4a533de850f546c6f8aa8c5b8 (diff)
downloadratpoison-0064759b73fd747eda2b28d5d89ab7d5c3cacba9.zip
* src/globals.c (rp_hook_db): add hooks quit and restart
(rp_quit_hook): new global (rp_restart_hook): likewise * src/events.c (handle_signals): call the restart and quit hooks
Diffstat (limited to 'src/globals.c')
-rw-r--r--src/globals.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/globals.c b/src/globals.c
index 6284a66..8fbe737 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -73,12 +73,16 @@ LIST_HEAD (rp_prefix_hook);
LIST_HEAD (rp_switch_win_hook);
LIST_HEAD (rp_switch_frame_hook);
LIST_HEAD (rp_switch_group_hook);
+LIST_HEAD (rp_quit_hook);
+LIST_HEAD (rp_restart_hook);
struct rp_hook_db_entry rp_hook_db[]=
{{"prefix", &rp_prefix_hook},
{"switchwin", &rp_switch_win_hook},
{"switchframe", &rp_switch_frame_hook},
{"switchgroup", &rp_switch_group_hook},
+ {"quit", &rp_quit_hook},
+ {"restart", &rp_restart_hook},
{NULL, NULL}};
void