Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elrzn/acme-wsl
Install acme / plan9port on Windows Subsystem for Linux
https://github.com/elrzn/acme-wsl
acme plan9port windows-subsystem-linux
Last synced: 3 months ago
JSON representation
Install acme / plan9port on Windows Subsystem for Linux
- Host: GitHub
- URL: https://github.com/elrzn/acme-wsl
- Owner: elrzn
- Created: 2017-03-07T20:16:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-18T17:26:22.000Z (over 5 years ago)
- Last Synced: 2024-08-01T13:16:36.055Z (6 months ago)
- Topics: acme, plan9port, windows-subsystem-linux
- Language: Shell
- Size: 3.91 KB
- Stars: 44
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-acme - acme-wsl - Install acme+p9p on Debian-based distros on WSL (Programs)
README
# acme-wsl
Install acme / plan9port on Debian/Ubuntu-based distros on Windows Subsystem for Linux.## Instructions
1. Download and run the script:
```
curl -s https://raw.githubusercontent.com/elrzn/acme-wsl/master/install.sh | sh -s
```2. Install [VcXsrv X server](https://sourceforge.net/projects/vcxsrv/) for Windows.
3. To run:```{r, engine='sh', count_lines}
export LIBGL_ALWAYS_INDIRECT=1
export DISPLAY=:0
acme -af /mnt/font/DejaVu\ Sans\ Mono/12a/font
```4. Consider adding the above environmental variables to ~/.bashrc (optional):
```{r, engine='sh', count_lines}
echo "export DISPLAY=:0" >> ~/.bashrc
echo "export LIBGL_ALWAYS_INDIRECT=1" >> ~/.bashrc
```5. Consider creating a script to launch acme with the above (optional):
```{r, engine='sh', count_lines}
echo "#!/bin/sh" >> ~/runacme.sh
echo "acme -af /mnt/font/DejaVu\ Sans\ Mono/12a/font1" >> ~/runacme.sh
sudo chmod u+x ~/runacme.sh
```