Saturday, October 10, 2020

Lua Extensions for Hexchat

Here is a simple Lua extension that can clear every history in Hexchat:

Filename: customizations.lua

local name = "customizations.lua"

local version = "0.0"
local descriptiom = "Customizations"

hexchat.register(name, version, descriptiom)

local help="Usage: /RESET"

local function reset_command()
    for channel in hexchat.iterate("channels") do
hexchat.command("clear all")
hexchat.command("clear history")
end
return hexchat.EAT_HEXCHAT
end

hexchat.hook_command("RESET", reset_command, reset_help)

hexchat.print("Loaded customizations.")


Labels: ,

Saturday, August 22, 2020

Install Portable MX Linux on USB

 Install portable MX Linux on USB without affecting Windows!

  1. Burn the MX Linux ISO using Rufus (Windows). Choose GPT or MBR depending on your system (UEFI or BIOS)Select ISO Hybrid Mode when it prompts for the ISO mode.
  2. Shutdown your machine and change the boot order to use USB.
  3. Choose the Custom option from the MX Live Linux Menu to create a customized system. Select from=usb and persist_all in the subsequent menus. Don't give more than 4 GB for any of the new filesystems it creates as FAT32 seems to have some restrictions, it can be resized later.

Labels: , ,