Código
#!usr/bin/ruby #Funcion cambiarfondo() #Based on a code of protos require "Win32API" def cambiarfondo(imagen) fondo = Win32API.new("user32", "SystemParametersInfo", ['L', 'L', 'P', 'L'], 'L') fondo.Call(20, 0, imagen, 0) end cambiarfondo("fondo/test.jpg"); #The End ?