From 200250ac1451abaead608f02d579ed7861b9b986 Mon Sep 17 00:00:00 2001 From: Alexander Weidinger Date: Fri, 7 Dec 2018 23:26:01 +0100 Subject: [PATCH] Replace urxvt by st --- PKGBUILD | 4 ++-- config.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 7977b28..5ef2e2e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ url="http://dwm.suckless.org" arch=('i686' 'x86_64') license=('MIT') options=(zipman) -depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'rxvt-unicode' 'dmenu') +depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu') install=dwm.install source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz 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 0002-add-support-for-columns-layout.patch) md5sums=('f0b6b1093b7207f89c2a90b848c008ec' - '10f97f39800ac5151ab860a87f7eec9b' + '07659aac8becb4c40cb5a43e82a4acfb' '939f403a71b6e85261d09fc3412269ee' '2491115ff8327a4526a3361228071bc2' '33569a6627811e3de3185753a23db5f8') diff --git a/config.h b/config.h index 5ab12a0..5ce76bc 100644 --- a/config.h +++ b/config.h @@ -49,7 +49,7 @@ static const Layout layouts[] = { /* commands */ 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 *termcmd[] = { "urxvt", NULL }; +static const char *termcmd[] = { "st", 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 *brightnessup[] = { "xbacklight", "+1", NULL };