From fbc50ea5779961984660fa5e285f0c24f3aef1aa Mon Sep 17 00:00:00 2001 From: speedie Date: Thu, 23 Feb 2023 16:21:28 +0100 Subject: [PATCH] minor change, might fix st ebuild conflict with speedwm --- Makefile | 3 ++- options.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 16a0088..8892aa5 100644 --- a/Makefile +++ b/Makefile @@ -47,12 +47,13 @@ install: st chmod 755 $(DESTDIR)$(PREFIX)/bin/st mkdir -p $(DESTDIR)$(APPPREFIX) cp -f st.desktop $(DESTDIR)$(APPPREFIX) - [ -f $(ICONNAME) ] && cp -f $(ICONNAME) $(DESTDIR)$(ICONPREFIX) || : + [ -f $(ICONNAME) ] && cp -f $(ICONNAME) $(DESTDIR)$(ICONPREFIX)/$(ICONNAME) || : rm -f *.o st tic -sx st.info uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/st rm -f $(DESTDIR)$(PREFIX)/bin/st.desktop + rm -f $(DESTDIR)$(ICONPREFIX)/$(ICONNAME) .PHONY: all options clean dist install uninstall diff --git a/options.h b/options.h index 10452e1..2dcc8b1 100644 --- a/options.h +++ b/options.h @@ -109,7 +109,7 @@ char *termname = "st-256color"; /* TERM value, underline will break if i unsigned int tabspaces = 4; /* Number of spaces per tab. 8 is common, I prefer 4. */ /* Alpha options */ -float alpha = 0.8; /* Background alpha/opacity between 0 and 1. */ +float alpha = 1; /* Background alpha/opacity between 0 and 1. */ float gradalpha = 0.54; /* Background gradient alpha value that will be changed */ float statalpha = 0.46; /* Alpha that will be added to gradalpha */