10 lines
379 B
Lua
10 lines
379 B
Lua
-- oh-my-posh.lua (cached)
|
|
local cache_file = "C:/Users/reazul.ashraf/AppData/Local/clink/oh-my-posh_cache.lua"
|
|
local f = io.open(cache_file, "r")
|
|
if f then
|
|
f:close()
|
|
dofile(cache_file)
|
|
else
|
|
-- Fallback if cache is missing
|
|
load(io.popen('oh-my-posh.exe --config="C:/Users/reazul.ashraf/AppData/Local/clink/nordtron.omp.json" --init --shell cmd'):read("*a"))()
|
|
end |