-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
69 lines (64 loc) · 1.54 KB
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
;;;; package.lisp
;;;; Copyright (C) 2016 by Robert A. Uhl
(in-package "CL-USER")
(defpackage #:cl-xdg
(:use #:cl)
(:export #:load-desktop-file
#:load-desktop-files
#:find-desktop-file-by-id
#:desktop-file
#:desktop-files
#:id
#:path
#:get-string-key
#:get-strings-key
#:get-locale-string-key
#:get-locale-strings-key
#:get-boolean-key
#:get-number-key))
(defpackage #:cl-xdg/sxml
(:use)
(:export #:|Menu|
#:|Name|
#:|Directory|
#:|DefaultAppDirs|
#:|AppDir|
#:|DefaultDirectoryDirs|
#:|DirectoryDir|
#:|LegacyDir|
#:|KDELegacyDirs|
#:|MergeFile|
#:|DefaultMergeDirs|
#:|MergeDir|
#:|OnlyUnallocated|
#:|NotOnlyUnallocated|
#:|Deleted|
#:|NotDeleted|
#:|Include|
#:|Exclude|
#:|Move|
#:|Menu|
#:|Layout|
#:|DefaultLayout|
#:|prefix|
#:|type|
#:|Category|
#:|Filename|
#:|And|
#:|Or|
#:|Not|
#:|All|
#:|Old|
#:|New|
#:|Menuname|
#:|Separator|
#:|Merge|
#:|show_empty|
#:|inline|
#:|inline_limit|
#:|inline_header|
#:|inline_alias|
#:*top*
#:@
#:*doctype*
#:*pi*))