From e4dc43e87c5330c1f22dc2e7570d7e66881ef647 Mon Sep 17 00:00:00 2001 From: Carlos Tuñón Date: Sat, 5 Jan 2019 15:47:12 -0500 Subject: Add key/mouse action for spawning new Alacritty instances --- src/tty/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tty') diff --git a/src/tty/unix.rs b/src/tty/unix.rs index b341638f..e8a28c91 100644 --- a/src/tty/unix.rs +++ b/src/tty/unix.rs @@ -38,7 +38,7 @@ use std::os::unix::io::AsRawFd; /// Process ID of child process /// /// Necessary to put this in static storage for `sigchld` to have access -static mut PID: pid_t = 0; +pub static mut PID: pid_t = 0; /// Exit flag /// -- cgit