dmenu-scripts/README.md

88 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2022-05-30 15:36:12 +02:00
dmenu-scripts - My implementation of dmenu to simulate Rofi functions (run, drun, window, filebrowser and theme-selector)
=========================================================================================================================
2022-05-29 15:52:30 +02:00
### Dependencies:
* **Arch Linux:**
2022-07-10 16:32:20 +02:00
```shell
2022-07-16 13:09:04 +02:00
$ sudo pacman -S gcc make coreutils sed expat freetype2 libxinerama git wmctrl \
dex brotli fontconfig libbsd libmd libpng libx11 libxau libxdmcp libxft \
libxrender xdg-utils --noconfirm
2022-07-10 16:32:20 +02:00
````
2022-05-29 15:52:30 +02:00
2022-05-30 15:36:12 +02:00
* **Debian/Ubuntu:**
2022-06-03 08:49:34 +02:00
2022-07-10 16:32:20 +02:00
```shell
2022-07-16 13:09:04 +02:00
$ sudo apt install gcc make coreutils sed libexpat1-dev libfreetype-dev xdg-utils \
libxinerama-dev git wmctrl x11-utils dex libxft-dev libfreetype6-dev libpng-dev \
libfontconfig1-dev libbrotli-dev libxrender-dev libmd-dev libxau-dev libbsd-dev \
libxdmcp-dev -y
2022-07-10 16:32:20 +02:00
````
2022-05-29 15:52:30 +02:00
### Build and install:
* Open terminal and run the following commands:
```shell
2024-05-01 11:13:27 +02:00
$ git clone https://git.q3aql.dev/q3aql/dmenu-scripts
2022-06-11 12:43:29 +02:00
$ cd dmenu-scripts
2022-05-29 15:52:30 +02:00
$ sudo make install clean
````
### dmenu scripts that simulate Rofi:
```shell
dmenu_run
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_run.png" />
2022-05-29 15:52:30 +02:00
```shell
dmenu_drun
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_drun.png" />
2022-05-29 15:52:30 +02:00
```shell
dmenu_wrun
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_wrun.png" />
2022-05-29 15:52:30 +02:00
```shell
dmenu_fbrun
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_fbrun.png" />
2022-05-29 18:47:03 +02:00
```shell
dmenu_themes
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_themes.png" />
2022-07-10 16:54:19 +02:00
```shell
dmenu_cmd
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_cmd.png" />
2022-07-29 18:33:42 +02:00
```shell
dmenu_close
```
2024-05-01 11:13:27 +02:00
<img src="https://git.q3aql.dev/q3aql/dmenu-scripts/raw/branch/master/examples/dmenu_close.png" />
2022-05-29 15:52:30 +02:00
### External links:
* [dmenu homepage](https://tools.suckless.org/dmenu/)
* [Rofi homepage](https://github.com/davatorium/rofi)