mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-09 01:10:26 +00:00
15 lines
142 B
C
15 lines
142 B
C
|
static int restart = 0;
|
||
|
|
||
|
void
|
||
|
sighup(int unused)
|
||
|
{
|
||
|
Arg a = {.i = 1};
|
||
|
quit(&a);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
sigterm(int unused)
|
||
|
{
|
||
|
Arg a = {.i = 0};
|
||
|
quit(&a);
|
||
|
}
|