-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
57 lines (41 loc) · 997 Bytes
/
README.Rmd
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
---
title: dman – dmenu man
output: amaryaml::github
---
# Introduction
dman is a simple shell script that allows you to use dmenu to search for a
manual page and view it as a PDF file in your default document viewer.
This is an essential tool for developers.
It helped me with all of my projects.
PDF documents are nicer to read than original man pages because they are more
professional.
# Usage
Simply invoke the command `dman`.
# Dependencies
- dmenu
# Installation
## Universal
```sh
`# user` git clone https://github.com/amarakon/dman
`# user` cd dman
`# root` make install
```
## Gentoo
```sh
`# root` eselect repository add amarlay git https://github.com/amarakon/amarlay
`# root` emerge --sync amarlay
`# root` emerge x11-misc/dman
```
# Uninstallation
## Universal
```sh
`# user` cd dman
`# root` make uninstall
```
## Gentoo
```sh
`# root` emerge -c x11-misc/dman
# Remove my overlay (optional)
`# root` eselect-repository remove -f amarlay
`# root` emerge --sync
```