mirror of
https://tildegit.org/Sunblade/hx_drives.git
synced 2026-06-15 02:30:18 +00:00
25 lines
448 B
Lua
25 lines
448 B
Lua
--[[
|
|
hx_drives.lua
|
|
By Sunblade
|
|
sunblade@tilde.club
|
|
|
|
For Hexchat 2.16+ (Windows build)
|
|
|
|
License: MIT
|
|
|
|
Usage: /drives
|
|
|
|
]]
|
|
|
|
hexchat.register("hx_drives.lua","0.0.1","Display the list of storage drives - Usage: /drives")
|
|
|
|
function drives()
|
|
input = io.popen("wmic logicaldisk get name,freespace,volumename,filesystem")
|
|
output = input:read("*a")
|
|
input:close()
|
|
hexchat.print(output)
|
|
return hexchat.EAT_ALL
|
|
end
|
|
|
|
hexchat.hook_command("drives", drives)
|