mirror of
https://github.com/LukeSmithxyz/st.git
synced 2024-11-24 16:05:47 +01:00
added desktop entry
This commit is contained in:
parent
bbb1eca4bf
commit
3f875d2242
4 changed files with 7 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ patches/
|
||||||
*.o
|
*.o
|
||||||
st
|
st
|
||||||
*.orig
|
*.orig
|
||||||
|
Makefile.rej
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -57,7 +57,7 @@ install: st
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/st
|
rm -f $(DESTDIR)$(PREFIX)/bin/st
|
||||||
rm -f $(DESTDIR)$(APPPREFIX )/st.desktop
|
rm -f $(DESTDIR)$(APPPREFIX)/st.desktop
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/st-copyout
|
rm -f $(DESTDIR)$(PREFIX)/bin/st-copyout
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/st-urlhandler
|
rm -f $(DESTDIR)$(PREFIX)/bin/st-urlhandler
|
||||||
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
|
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
|
|
8
config.h
8
config.h
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "FiraCode Nerd Font:pixelsize=14:antialias=true:autohint=true";
|
static char *font = "mono:pixelsize=12:antialias=true:autohint=true";
|
||||||
static char *font2[] = { "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" };
|
static char *font2[] = { "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" };
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ static int borderpx = 2;
|
||||||
* 4: value of shell in /etc/passwd
|
* 4: value of shell in /etc/passwd
|
||||||
* 5: value of shell in config.h
|
* 5: value of shell in config.h
|
||||||
*/
|
*/
|
||||||
static char *shell = "/bin/zsh";
|
static char *shell = "/bin/sh";
|
||||||
char *utmp = NULL;
|
char *utmp = NULL;
|
||||||
/* scroll program: to enable use a string like "scroll" */
|
/* scroll program: to enable use a string like "scroll" */
|
||||||
char *scroll = NULL;
|
char *scroll = NULL;
|
||||||
|
@ -87,7 +87,7 @@ const int boxdraw_braille = 0;
|
||||||
static int bellvolume = 0;
|
static int bellvolume = 0;
|
||||||
|
|
||||||
/* default TERM value */
|
/* default TERM value */
|
||||||
char *termname = "xterm-256color";
|
char *termname = "st-256color";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* spaces per tab
|
* spaces per tab
|
||||||
|
@ -107,7 +107,7 @@ char *termname = "xterm-256color";
|
||||||
unsigned int tabspaces = 8;
|
unsigned int tabspaces = 8;
|
||||||
|
|
||||||
/* bg opacity */
|
/* bg opacity */
|
||||||
float alpha = 1;
|
float alpha = 0.8;
|
||||||
float alphaOffset = 0.0;
|
float alphaOffset = 0.0;
|
||||||
float alphaUnfocus;
|
float alphaUnfocus;
|
||||||
|
|
||||||
|
|
|
@ -8,4 +8,4 @@ Categories=System;TerminalEmulator;
|
||||||
Name=st
|
Name=st
|
||||||
GenericName=Terminal
|
GenericName=Terminal
|
||||||
Comment=st is a simple terminal implementation for X
|
Comment=st is a simple terminal implementation for X
|
||||||
StartupWMClass=xterm-256color
|
StartupWMClass=st-256color
|
||||||
|
|
Loading…
Reference in a new issue