]> git.newer.systems Git - st.git/commitdiff
update
authorTucker Johnson <tucker@newer.systems>
Fri, 24 Apr 2026 12:03:31 +0000 (08:03 -0400)
committerTucker Johnson <tucker@newer.systems>
Fri, 24 Apr 2026 12:03:31 +0000 (08:03 -0400)
.gitignore [new file with mode: 0644]
config.h
extras/scripts/st-copyout

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..4c64f54
--- /dev/null
@@ -0,0 +1,54 @@
+# Prerequisites
+*.d
+
+# Object files
+*.o
+*.ko
+*.obj
+*.elf
+
+# Linker output
+*.ilk
+*.map
+*.exp
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Libraries
+*.lib
+*.a
+*.la
+*.lo
+
+# Shared objects (inc. Windows DLLs)
+*.dll
+*.so
+*.so.*
+*.dylib
+
+# Executables
+*.exe
+*.out
+*.app
+*.i*86
+*.x86_64
+*.hex
+dwmblocks
+st
+
+# Debug files
+*.dSYM/
+*.su
+*.idb
+*.pdb
+
+# Kernel Module Compile Results
+*.mod*
+*.cmd
+.tmp_versions/
+modules.order
+Module.symvers
+Mkfile.old
+dkms.conf
index 37411051bb36221c526e787a9b3096705d006afd..b738f35e8f8a767c2716cfb1311e17867a825a13 100644 (file)
--- a/config.h
+++ b/config.h
@@ -107,7 +107,7 @@ char *termname = "st-256color";
 unsigned int tabspaces = 8;
 
 /* bg opacity */
-float alpha = 0.93;
+float alpha = 0.80;
 float alphaOffset = 0.0;
 float alphaUnfocus;
 
index 0d19e5a3e9805879153a6b037af6911906f4bcef..575f8d3eb5c86a2c14e85948705c05057d3a53a3 100755 (executable)
@@ -2,7 +2,6 @@
 # Using external pipe with st, give a dmenu prompt of recent commands,
 # allowing the user to copy the output of one.
 # xclip required for this script.
-# By Jaywalker and Luke
 tmpfile=$(mktemp /tmp/st-cmd-output.XXXXXX)
 trap 'rm "$tmpfile"' 0 1 15
 sed -n "w $tmpfile"