From ae07751051cda6ca2cb7d8f17e2582b83c233f9a Mon Sep 17 00:00:00 2001 From: Tucker Johnson Date: Fri, 24 Apr 2026 08:03:31 -0400 Subject: [PATCH] update --- .gitignore | 54 +++++++++++++++++++++++++++++++++++++++ config.h | 2 +- extras/scripts/st-copyout | 1 - 3 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c64f54 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/config.h b/config.h index 3741105..b738f35 100644 --- 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; diff --git a/extras/scripts/st-copyout b/extras/scripts/st-copyout index 0d19e5a..575f8d3 100755 --- a/extras/scripts/st-copyout +++ b/extras/scripts/st-copyout @@ -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" -- 2.39.5