mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
It allows handy searching of term in question with various existing search engines. For details, see README.org.
11 lines
323 B
Common Lisp
11 lines
323 B
Common Lisp
;;;; searchengines.asd
|
|
|
|
(asdf:defsystem #:searchengines
|
|
:serial t
|
|
:description "Allows searching text using prompt or clipboard contents with various search engines"
|
|
:author "Alex Ermolov"
|
|
:license "GPLv3"
|
|
:depends-on (#:stumpwm #:drakma)
|
|
:components ((:file "package")
|
|
(:file "searchengines")))
|