aboutsummaryrefslogtreecommitdiff
path: root/module/terminal/termios.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/terminal/termios.scm')
-rw-r--r--module/terminal/termios.scm13
1 files changed, 13 insertions, 0 deletions
diff --git a/module/terminal/termios.scm b/module/terminal/termios.scm
new file mode 100644
index 00000000..50683f84
--- /dev/null
+++ b/module/terminal/termios.scm
@@ -0,0 +1,13 @@
+;;; Module for termios interaction from Guile,
+;;; Since that for some reason isn't built in.
+
+(define-module (terminal termios)
+ #:export (c-lflags-disable! c-lflag-restore!))
+
+(define-public ECHO #x0000010)
+(define-public ICANON #x0000002)
+
+(setenv "LD_LIBRARY_PATH"
+ (string-append (dirname (dirname (dirname (current-filename))))
+ "/lib"))
+(load-extension "libtermios" "init_termios")