fix typos in config
This commit is contained in:
parent
8c6890f943
commit
45530be5e2
3 changed files with 24 additions and 27 deletions
|
@ -1,13 +1,17 @@
|
||||||
slstatus - suckless status
|
# slstatus - suckless status
|
||||||
==========================
|
|
||||||
slstatus is a small tool for providing system status information to other
|
slstatus is a small tool for providing system status information to other
|
||||||
programs over the EWMH property of the root window (used by dwm(1)) or
|
programs over the EWMH property of the root window (used by dwm(1)) or
|
||||||
standard input/output. It is designed to be as efficient as possible by
|
standard input/output. It is designed to be as efficient as possible by
|
||||||
only issuing the minimum of system calls required.
|
only issuing the minimum of system calls required.
|
||||||
|
|
||||||
|
## Applied patches
|
||||||
|
- [backlight](https://tools.suckless.org/slstatus/patches/backlight)
|
||||||
|
- [kanji](https://tools.suckless.org/slstatus/patches/kanji)
|
||||||
|
- [signals](https://tools.suckless.org/slstatus/patches/signals)
|
||||||
|
- [No x11](https://codeberg.org/sewn/slstatus)
|
||||||
|
|
||||||
Features
|
# Features
|
||||||
--------
|
- Backlight percentage
|
||||||
- Battery percentage/state/time left
|
- Battery percentage/state/time left
|
||||||
- Cat (read file)
|
- Cat (read file)
|
||||||
- CPU usage
|
- CPU usage
|
||||||
|
@ -19,6 +23,7 @@ Features
|
||||||
- Username/GID/UID
|
- Username/GID/UID
|
||||||
- Hostname
|
- Hostname
|
||||||
- IP address (IPv4 and IPv6)
|
- IP address (IPv4 and IPv6)
|
||||||
|
- Kanji
|
||||||
- Kernel version
|
- Kernel version
|
||||||
- Keyboard indicators
|
- Keyboard indicators
|
||||||
- Keymap
|
- Keymap
|
||||||
|
@ -32,9 +37,7 @@ Features
|
||||||
- Volume percentage
|
- Volume percentage
|
||||||
- WiFi signal percentage and ESSID
|
- WiFi signal percentage and ESSID
|
||||||
|
|
||||||
|
# Requirements
|
||||||
Requirements
|
|
||||||
------------
|
|
||||||
Currently slstatus works on FreeBSD, Linux and OpenBSD.
|
Currently slstatus works on FreeBSD, Linux and OpenBSD.
|
||||||
In order to build slstatus you need the Xlib header files.
|
In order to build slstatus you need the Xlib header files.
|
||||||
|
|
||||||
|
@ -43,23 +46,18 @@ In order to build slstatus you need the Xlib header files.
|
||||||
- For volume percentage on FreeBSD, `sndio` must be installed.
|
- For volume percentage on FreeBSD, `sndio` must be installed.
|
||||||
|
|
||||||
|
|
||||||
Installation
|
# Installation
|
||||||
------------
|
Edit `config.mk` to match your local setup (slstatus is installed into the
|
||||||
Edit config.mk to match your local setup (slstatus is installed into the
|
`/usr/local/` namespace by default).
|
||||||
/usr/local namespace by default).
|
|
||||||
|
|
||||||
Afterwards enter the following command to build and install slstatus (if
|
Afterwards enter the following command to build and install slstatus (if
|
||||||
necessary as root):
|
necessary as root):
|
||||||
|
|
||||||
make clean install
|
make clean install
|
||||||
|
|
||||||
|
# Running slstatus
|
||||||
Running slstatus
|
|
||||||
----------------
|
|
||||||
See the man page for details.
|
See the man page for details.
|
||||||
|
|
||||||
|
# Configuration
|
||||||
Configuration
|
|
||||||
-------------
|
|
||||||
slstatus can be customized by creating a custom config.h and (re)compiling the
|
slstatus can be customized by creating a custom config.h and (re)compiling the
|
||||||
source code. This keeps it fast, secure and simple.
|
source code. This keeps it fast, secure and simple.
|
|
@ -30,7 +30,7 @@
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return bprintf("%d%%", cur * 100 / max);
|
return bprintf("%d", cur * 100 / max);
|
||||||
}
|
}
|
||||||
#elif defined(__OpenBSD__)
|
#elif defined(__OpenBSD__)
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
17
config.h
17
config.h
|
@ -74,15 +74,14 @@ static const char unknown_str[] = "n/a";
|
||||||
|
|
||||||
static const struct arg args[] = {
|
static const struct arg args[] = {
|
||||||
/* function format argument turn signal */
|
/* function format argument turn signal */
|
||||||
{ cpu_perc, " [ %s% ]", NULL, 1, -1, },
|
{ cpu_perc, " [ %s%% ] ",NULL, 1, -1, },
|
||||||
{ ram_perc, "[ %s% ]", NULL, 1, -1, },
|
{ ram_perc, "[ %s%% ] ", NULL, 1, -1, },
|
||||||
{ backlight_perc, "[ %s ]", "intel_backlight", 1, 4, },
|
{ backlight_perc, "[ %s%% ] ", "intel_backlight", 1, 4, },
|
||||||
{ run_command, "[ %s ]", "getvol -m", 1, 3, },
|
{ run_command, "[ %s%% ] ", "getvol -m", 1, 3, },
|
||||||
// { vol_perc, "[ %s ]", "Capture", 1, 3, },
|
{ vol_icon, "[ %s%% ] ", "Master", 1, 2, },
|
||||||
{ vol_icon, "[ %s%% ]", "Master", 1, 2, },
|
{ battery_icon, "[ %s%% ] ", "BAT1", 1, -1, },
|
||||||
{ battery_icon, "[ %s%% ]", "BAT1", 1, -1, },
|
{ datetime, "[ %s ] ", "%I:%M %p", 1, -1, },
|
||||||
{ datetime, "[ %s ]", "%I:%M %p", 1, -1, },
|
{ datetime, "[ %s ] ", "%b %d", 1, -1, },
|
||||||
{ datetime, "[ %s ]", "%b %d", 1, -1, },
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* maximum output string length */
|
/* maximum output string length */
|
||||||
|
|
Loading…
Add table
Reference in a new issue