about summary refs log tree commit diff stats
path: root/README
blob: 2dcaeddfdc0e18dc8971c71a5c56a9a2e4993e66 (plain) (blame)
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
dwm - dynamic window manager
============================
dwm is an extremely fast, small, and dynamic window manager for X.


Requirements
------------
In order to build dwm you need the Xlib header files.


Installation
------------
Edit config.mk to match your local setup (dwm is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install dwm (if
necessary as root):

    make clean install

If you are going to use the default bluegray color scheme it is highly
recommended to also install the bluegray files shipped in the dextra package.


Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:

    exec dwm

In order to connect dwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:

    DISPLAY=foo.bar:1 exec dwm

(This will start dwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something
like this in your .xinitrc:

    while true
    do
        echo `date` `uptime | sed 's/.*,//'`
        sleep 1
    done | dwm


Configuration
-------------
The configuration of dwm is done by creating a custom config.h
and (re)compiling the source code.
apshot/ranger-stable.tar.gz * Git Clone URL: git clone http://git.sv.gnu.org/r/ranger.git Features -------- * Multi-column display (Miller Columns) * Preview of the selected file/directory * Common file operations (create/chmod/copy/delete/...) * VIM-like console and hotkeys * Automatically determine file types and run them with correct programs * Change the directory of your shell after exiting ranger * Tabs, Bookmarks, Mouse support Getting Started --------------- Ranger can be started without installing. Just run the executable (in a terminal.) The switch "--clean" will prevent it from creating or accessing configuration files. Follow the instructions in the INSTALL file for installing ranger. After starting ranger, you should see 4 columns. The third one is the main column, the directory where you're currently at. To the left you see the parent directories and to the right there's a preview of the object you're pointing at. Now use the Arrow Keys to navigate, Enter to open a file or type Q to quit. To customize ranger, copy the files from ranger/defaults/ to ~/.ranger/ and modify them according to your wishes. Troubleshooting, Getting Help ----------------------------- If you encounter an error, try running ranger with --debug. This will sometimes display more detailed information about the error. Also, try deactivating optimization: PYTHONOPTIMIZE="" ranger --debug Report bugs on savannah: (please include as much information as possible) http://savannah.nongnu.org/bugs/?func=additem&group=ranger Ask questions on the mailing list: http://lists.nongnu.org/mailman/listinfo/ranger-users Further Reading --------------- Check the man page for information on common features and hotkeys. The most detailed manual is accessible by pressing "?" from inside ranger. It is also available at ranger/help/, contained in the *.py files. The file ranger/defaults/keys.py contains all key combinations, so that's another place you may want to check out.