dotfiles: leviathan: arch-openbox-20231010

This commit is contained in:
2023-10-10 20:44:53 -05:00
commit 0792b14382
390 changed files with 48601 additions and 0 deletions

14
.config/tint2/executor/temp Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
export LC_ALL=POSIX LANG=POSIX; . "${HOME}/.owl4ce_var"
LINUX_SYS='/sys/devices/virtual/thermal'
if [ -d "${LINUX_SYS}/${TEMP_DEV}" ]; then
exec echo "$(expr $(<"${LINUX_SYS}/${TEMP_DEV}/temp") / 1000)"$'\xc2\xb0C'
elif [ ! -d "$LINUX_SYS" ]; then
exec echo "${LINUX_SYS} is an invalid path!"
else
exec echo "${TEMP_DEV} not found!"
fi
exit ${?}