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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
[](https://www.gnu.org/licenses/gpl-3.0)
[](https://jcs-emacs.github.io/jcs-elpa/#/elenv)
<a href="https://jcs-emacs.github.io/"><img align="right" src="https://raw.githubusercontent.com/jcs-emacs/badges/master/others/built-with/dark.svg" alt="Built with"></a>
# elenv
> Environment variable management
[](https://github.com/jcs-elpa/elenv/actions/workflows/test.yml)
The package name `elenv' stands for Emacs Lisp environment.
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
**Table of Contents**
- [elenv](#elenv)
- [🔨 Usage](#🔨-usage)
- [🖥️ Operating System](#🖥️-operating-system)
- [[v] elenv-windows](#v-elenv-windows)
- [[v] elenv-darwin](#v-elenv-darwin)
- [[v] elenv-macos](#v-elenv-macos)
- [[v] elenv-linux](#v-elenv-linux)
- [[v] elenv-bsd](#v-elenv-bsd)
- [[v] elenv-unix](#v-elenv-unix)
- [[v] elenv-system-type](#v-elenv-system-type)
- [[m] elenv-with-os](#m-elenv-with-os)
- [[m] elenv-with-windows](#m-elenv-with-windows)
- [[m] elenv-with-macos](#m-elenv-with-macos)
- [[m] elenv-with-linux](#m-elenv-with-linux)
- [[m] elenv-with-bsd](#m-elenv-with-bsd)
- [[m] elenv-with-unix](#m-elenv-with-unix)
- [⛓️ Environment](#⛓️-environment)
- [[m] elenv-if-env](#m-elenv-if-env)
- [[m] elenv-when-env](#m-elenv-when-env)
- [[m] elenv-unless-env](#m-elenv-unless-env)
- [⚙️ Executable](#⚙️-executable)
- [[m] elenv-if-exec](#m-elenv-if-exec)
- [[m] elenv-when-exec](#m-elenv-when-exec)
- [[m] elenv-unless-exec](#m-elenv-unless-exec)
- [🖼️ Graphic](#🖼️-graphic)
- [[v] elenv-graphic-p](#v-elenv-graphic-p)
- [🔍 Debugging](#🔍-debugging)
- [[f] elenv-debugging-p](#f-elenv-debugging-p)
- [🛠️ Contribute](#🛠️-contribute)
- [🔬 Development](#🔬-development)
- [⚜️ License](#⚜️-license)
<!-- markdown-toc end -->
## 🔨 Usage
### 🖥️ Operating System
#### [v] elenv-windows
```elisp
(when elenv-windows ... ; is windows
```
#### [v] elenv-darwin
```elisp
(when elenv-darwin ... ; is darwin
```
#### [v] elenv-macos
```elisp
(when elenv-macos ... ; is macos
```
#### [v] elenv-linux
```elisp
(when elenv-linux ... ; is linux
```
#### [v] elenv-bsd
```elisp
(when elenv-bsd ... ; is bsd
```
#### [v] elenv-unix
```elisp
(when elenv-unix ... ; is unix
```
#### [v] elenv-system-type
```elisp
(cl-case elenv-system-type ; return current OS in symbol
(`windows ...
```
#### [m] elenv-with-os
```elisp
(elenv-with-os 'windows ... ; accept list
```
#### [m] elenv-with-windows
```elisp
(elenv-with-windows ... ; do stuff in windows
```
#### [m] elenv-with-macos
```elisp
(elenv-with-macos ... ; do stuff in macos
```
#### [m] elenv-with-linux
```elisp
(elenv-with-linux ... ; do stuff in linux
```
#### [m] elenv-with-bsd
```elisp
(elenv-with-bsd ... ; do stuff in bsd
```
#### [m] elenv-with-unix
```elisp
(elenv-with-unix ... ; do stuff in unix
```
### ⛓️ Environment
#### [m] elenv-if-env
```elisp
(elenv-if-env "PATH"
... ; do stuff when VARIABLE exists; expose it as `value'.
... ; else we execute the ELSE block
```
#### [m] elenv-when-env
```elisp
(elenv-when-env "PATH" ... ; do stuff when VARIABLE exists; expose it as `value'.
```
#### [m] elenv-unless-env
```elisp
(elenv-unless-env "PATH" ... ; do stuff unless VARIABLE exists; expose it as `value'.
```
### ⚙️ Executable
#### [m] elenv-if-exec
```elisp
(elenv-if-exec "node" nil
... ; do stuff if PROGRAM exists; expose it as `value'.
... ; else we execute the ELSE block
```
#### [m] elenv-when-exec
```elisp
(elenv-when-exec "node" nil ... ; do stuff when PROGRAM exists; expose it as `value'.
```
#### [m] elenv-unless-exec
```elisp
(elenv-unless-exec "node" nil ... ; do stuff unless PROGRAM exists; expose it as `value'.
```
### 🖼️ Graphic
#### [v] elenv-graphic-p
```elisp
(when elenv-graphic-p ... ; do stuff in graphic mode
```
### 🔍 Debugging
#### [f] elenv-debugging-p
```elisp
(when (elenv-debugging-p) ... ; do stuff in debug mode
```
## 🛠️ Contribute
[](http://makeapullrequest.com)
[](https://github.com/bbatsov/emacs-lisp-style-guide)
[](https://www.paypal.me/jcs090218)
[](https://www.patreon.com/jcs090218)
If you would like to contribute to this project, you may either
clone and make pull requests to this repository. Or you can
clone the project and establish your own branch of this tool.
Any methods are welcome!
### 🔬 Development
To run the test locally, you will need the following tools:
- [Eask](https://emacs-eask.github.io/)
- [Make](https://www.gnu.org/software/make/) (optional)
Install all dependencies and development dependencies:
```sh
$ eask install-deps --dev
```
To test the package's installation:
```sh
$ eask package
$ eask install
```
To test compilation:
```sh
$ eask compile
```
**🪧 The following steps are optional, but we recommend you follow these lint results!**
The built-in `checkdoc` linter:
```sh
$ eask lint checkdoc
```
The standard `package` linter:
```sh
$ eask lint package
```
*📝 P.S. For more information, find the Eask manual at https://emacs-eask.github.io/.*
## ⚜️ License
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
See [`LICENSE`](./LICENSE.txt) for details.
|