Replace urxvt by st
This commit is contained in:
4
PKGBUILD
4
PKGBUILD
@@ -11,7 +11,7 @@ url="http://dwm.suckless.org"
|
|||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
options=(zipman)
|
options=(zipman)
|
||||||
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'rxvt-unicode' 'dmenu')
|
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu')
|
||||||
install=dwm.install
|
install=dwm.install
|
||||||
source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
|
source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
|
||||||
config.h
|
config.h
|
||||||
@@ -19,7 +19,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
|
|||||||
0001-add-support-for-_NET_SUPPORTING_WM_CHECK.patch
|
0001-add-support-for-_NET_SUPPORTING_WM_CHECK.patch
|
||||||
0002-add-support-for-columns-layout.patch)
|
0002-add-support-for-columns-layout.patch)
|
||||||
md5sums=('f0b6b1093b7207f89c2a90b848c008ec'
|
md5sums=('f0b6b1093b7207f89c2a90b848c008ec'
|
||||||
'10f97f39800ac5151ab860a87f7eec9b'
|
'07659aac8becb4c40cb5a43e82a4acfb'
|
||||||
'939f403a71b6e85261d09fc3412269ee'
|
'939f403a71b6e85261d09fc3412269ee'
|
||||||
'2491115ff8327a4526a3361228071bc2'
|
'2491115ff8327a4526a3361228071bc2'
|
||||||
'33569a6627811e3de3185753a23db5f8')
|
'33569a6627811e3de3185753a23db5f8')
|
||||||
|
|||||||
2
config.h
2
config.h
@@ -49,7 +49,7 @@ static const Layout layouts[] = {
|
|||||||
/* commands */
|
/* commands */
|
||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
|
||||||
static const char *termcmd[] = { "urxvt", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
static const char *lockcmd[] = { "physlock", "-m", NULL };
|
static const char *lockcmd[] = { "physlock", "-m", NULL };
|
||||||
static const char *scrot[] = { "scrot", "/home/alex/Pictures/Screenshots/%Y-%m-%d-%H%M%S_$wx$h.png", NULL };
|
static const char *scrot[] = { "scrot", "/home/alex/Pictures/Screenshots/%Y-%m-%d-%H%M%S_$wx$h.png", NULL };
|
||||||
static const char *brightnessup[] = { "xbacklight", "+1", NULL };
|
static const char *brightnessup[] = { "xbacklight", "+1", NULL };
|
||||||
|
|||||||
Reference in New Issue
Block a user