Replace urxvt by st

This commit is contained in:
Alexander Weidinger
2018-12-07 23:26:01 +01:00
parent f7b4983523
commit 200250ac14
2 changed files with 3 additions and 3 deletions

View File

@@ -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')

View File

@@ -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 };