wmtools/base.nim

224 lines
5.5 KiB
Nim
Raw Normal View History

import std/[os,osproc,strutils,json,rdstdin,marshal]
2022-02-06 21:10:06 +01:00
type
2022-04-28 21:58:40 +02:00
Info* = object
2022-04-28 13:50:07 +02:00
title*: string
selected_fg*: string
selected_bg*: string
unselected_fg*: string
unselected_bg*: string
2022-02-06 21:10:06 +01:00
full_text*: string
# next few are for i3bar use
2022-02-06 21:10:06 +01:00
border*: string
2022-02-12 16:19:43 +01:00
background*: string
color*: string
html_text*: string
short_text*: string
2022-05-06 12:12:13 +02:00
Dmenu = object
command: string
bottom: string
grab_kb: string
i_case: string
lines_shown: string
monitor: string
prompt: string
font: string
norm_bg: string
norm_fg: string
sel_bg: string
sel_fg: string
i3BarInput* = object
button*: int
2022-02-12 16:19:43 +01:00
x*: int
y*: int
const font = "Hermit-10"
2022-02-06 21:10:06 +01:00
const background* = "#000000"
const backgroundalt* = "#bb222222"
const backgroundalt2* = "#bb333333"
const foreground* = "#dfdfdf"
const foregroundalt* = "#777"
const foregroundalt2* = "#ccc"
2022-02-12 16:19:43 +01:00
const black* = "#000000"
2022-02-27 15:57:40 +01:00
const white* = "#FFFFFF"
2022-02-06 21:10:06 +01:00
const yellow* = "#ffb52a"
const red* = "#e60053"
const purple* = "#9f78e1"
const blue* = "#0a6cf5"
const lightblue* = "#7296EF"
const lighterblue* = "#B5DDF7"
const green* = "#4b9901"
const lightgreen* = "#00ff00"
const grey* = "#dfdfdf"
const darkgrey* = "#444"
const primary* = yellow
const secondary* = red
const alert* = "#bd2c40"
2022-05-06 12:12:13 +02:00
const MAX_LINES = 20
var loop* = false
var stoploop* = true
var dmenu* = true
var rofi* = false
var passmenu* = false
var command_wrapper* = false
var run_command* = ""
2022-02-06 21:10:06 +01:00
proc newInfo*(title: string = "Info"): Info =
2022-04-28 21:58:40 +02:00
return Info(
title: title,
selected_fg: black,
selected_bg: white,
unselected_fg: white,
unselected_bg: black,
# next few are for i3bar use
2022-02-27 15:57:40 +01:00
border: white,
background: black,
color: foreground,
2022-02-27 15:57:40 +01:00
)
2022-05-06 12:12:13 +02:00
proc newDmenuConfig(cmd: string = "dmenu"): Dmenu =
2022-05-06 12:12:13 +02:00
var dmenu = Dmenu()
dmenu.command = cmd
2022-05-06 12:12:13 +02:00
dmenu.bottom = "-b"
dmenu.grabkb = "-f"
dmenu.i_case = "-i"
dmenu.lines_shown = "-l"
dmenu.monitor = "-m"
dmenu.prompt = "-p"
dmenu.font = "-fn"
dmenu.norm_bg = "-nb"
dmenu.norm_fg = "-nf"
dmenu.sel_bg = "-sb"
dmenu.sel_fg = "-sf"
return dmenu
proc newRofiConfig(): Dmenu =
var rofi = newDmenuConfig()
rofi.command = "rofi -dmenu"
return rofi
proc newDmenu(): Dmenu =
if rofi:
return newRofiConfig()
elif passmenu:
return newDmenuConfig("passmenu")
elif command_wrapper:
return newDmenuConfig(run_command)
2022-05-06 12:12:13 +02:00
return newDmenuConfig()
proc debugLog*(str: string) =
let f = open("/tmp/debug.txt",fmAppend)
defer: f.close()
f.writeLine(str)
proc switchTwmMode*(mode: string = "default") =
# I intend to add support for more twm as time goes on (I switch around a lot)
# Switch out of an i3 bindsym mode if set
discard execCmd("i3-msg mode \"" & mode & "\"")
proc parseInput*(): i3BarInput =
let input = readLineFromStdin("")
try:
let jsonNode = parseJson(input)
let i3input = to(jsonNode, i3BarInput)
return i3input
except:
return i3BarInput()
2022-04-28 13:34:09 +02:00
2022-02-12 14:20:21 +01:00
proc clearInput*(count: int = 1) =
2022-02-12 16:19:43 +01:00
for x in countup(1, count):
2022-02-12 14:20:21 +01:00
discard readLineFromStdin("")
2022-02-06 21:10:06 +01:00
proc getArguments*(): seq[string] =
let args = commandLineParams()
return args
2022-05-06 12:12:13 +02:00
proc stripQuotes*(str: string): string =
return replace(str,"\"",""")
proc quote*(str: string): string =
var text = str
# May need to put some further work to escape some special chars here
text = stripQuotes(text)
# Put leading and ending quote marks in
return " \"" & text & "\" "
# ^ Add a spaces ^ so the previous flag isn't touching
proc genDmenuCmd*(data: Info, opts: varargs[string], rofi: bool = false): string =
# Build dmenu/rofi command
2022-05-06 12:12:13 +02:00
var cmd = ""
# if the text is empty, we don't want to create a menu item of it
2022-05-06 12:12:13 +02:00
if data.full_text != "":
cmd &= data.full_text & "\n"
for opt in opts:
cmd = cmd & opt & "\n"
2022-04-28 21:58:40 +02:00
cmd.removeSuffix("\n")
2022-05-06 12:12:13 +02:00
cmd = "echo -e" & quote(cmd) & " | "
var dmenu = newDmenu()
cmd = cmd & dmenu.command & " "
cmd = cmd & dmenu.lines_shown & " " & $MAX_LINES & " "
2022-05-06 12:12:13 +02:00
cmd = cmd & dmenu.prompt & quote(data.title)
cmd = cmd & dmenu.norm_bg & quote(data.unselected_bg)
cmd = cmd & dmenu.norm_fg & quote(data.unselected_fg)
cmd = cmd & dmenu.sel_bg & quote(data.selected_bg)
cmd = cmd & dmenu.sel_fg & quote(data.selected_fg)
cmd = cmd & dmenu.font & quote(font)
return cmd
2022-05-06 12:12:13 +02:00
proc runDMenu*(data: Info, opts: varargs[string], rofi: bool = false): string =
let cmd = genDmenuCmd(data, opts, rofi)
2022-05-06 12:12:13 +02:00
#echo cmd
#
# Run command and get output
2022-05-09 21:12:05 +02:00
var output = execCmdEx(cmd)
output.output.stripLineEnd()
return output.output
proc outputData*(data: Info, args: varargs[string]): string {.discardable.} =
var output = ""
if rofi:
2022-04-29 10:59:28 +02:00
output = runDmenu(data,args, rofi = true)
elif loop:
# mainly for i3bar/i3blocks compatible output
var j_data = data
if j_data.html_text != "":
j_data.full_text = j_data.html_text
echo $$j_data
else:
# if all else fails, use dmenu (default)
output = runDmenu(data,args)
return output
# At Start up:
# Switch bindsym mode back to default as it could be being used.
switchTwmMode()
let args* = getArguments()
for idx, arg in args:
case arg:
of "noloop":
stoploop = true
of "i3bar":
# I've kind of changed from using an i3bar to using #nobar so i3bar
# isn't really supported any more but this is here for backwards compatibility
loop = true
stoploop = false
of "dmenu":
stoploop = true
dmenu = true
of "rofi":
stoploop = true
rofi = true
of ["pass","passmenu"]:
passmenu = true
break
2022-04-28 13:50:07 +02:00