mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
15 lines
208 B
Common Lisp
15 lines
208 B
Common Lisp
;;;; package.lisp
|
|
|
|
(defpackage #:screenshot
|
|
(:use #:cl :stumpwm :zpng))
|
|
|
|
(in-package #:screenshot)
|
|
|
|
(import
|
|
'(
|
|
zpng::finish-png
|
|
zpng::pixel-streamed-png
|
|
zpng::start-png
|
|
zpng::write-pixel
|
|
))
|