diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-12 19:54:06 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-12 19:54:06 -0500 |
commit | e74ea1ed238500d48d3df0c8a5e15e4fd0bd0fcf (patch) | |
tree | e3527d7f52f2e0c931b6676fc26ae9ecb32d6b03 /awesome/util | |
parent | ce020ab718b0ea09224dd15fc9a5796b3acc7904 (diff) | |
download | dotconfig-e74ea1ed238500d48d3df0c8a5e15e4fd0bd0fcf.tar.xz dotconfig-e74ea1ed238500d48d3df0c8a5e15e4fd0bd0fcf.zip |
remove osname and fix autofocus issue
Diffstat (limited to 'awesome/util')
-rw-r--r-- | awesome/util/osname.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/awesome/util/osname.lua b/awesome/util/osname.lua deleted file mode 100644 index 9501581..0000000 --- a/awesome/util/osname.lua +++ /dev/null @@ -1,5 +0,0 @@ -local handle = io.popen("uname") -local result = handle:read("*a") -handle:close() - -return result:match("^%s*(.-)%s*$") or "Unknown OS" |