minor change, might fix st ebuild conflict with speedwm

This commit is contained in:
speedie 2023-02-23 16:21:28 +01:00
parent 05b7edefd6
commit fbc50ea577
2 changed files with 3 additions and 2 deletions

View file

@ -47,12 +47,13 @@ install: st
chmod 755 $(DESTDIR)$(PREFIX)/bin/st chmod 755 $(DESTDIR)$(PREFIX)/bin/st
mkdir -p $(DESTDIR)$(APPPREFIX) mkdir -p $(DESTDIR)$(APPPREFIX)
cp -f st.desktop $(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 rm -f *.o st
tic -sx st.info tic -sx st.info
uninstall: uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/st rm -f $(DESTDIR)$(PREFIX)/bin/st
rm -f $(DESTDIR)$(PREFIX)/bin/st.desktop rm -f $(DESTDIR)$(PREFIX)/bin/st.desktop
rm -f $(DESTDIR)$(ICONPREFIX)/$(ICONNAME)
.PHONY: all options clean dist install uninstall .PHONY: all options clean dist install uninstall

View file

@ -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. */ unsigned int tabspaces = 4; /* Number of spaces per tab. 8 is common, I prefer 4. */
/* Alpha options */ /* 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 gradalpha = 0.54; /* Background gradient alpha value that will be changed */
float statalpha = 0.46; /* Alpha that will be added to gradalpha */ float statalpha = 0.46; /* Alpha that will be added to gradalpha */