2022-05-04 17:17:02 +02:00
|
|
|
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
|
2022-05-04 17:17:02 +02:00
|
|
|
selected_fg*: string
|
|
|
|
selected_bg*: string
|
|
|
|
unselected_fg*: string
|
|
|
|
unselected_bg*: string
|
2022-02-06 21:10:06 +01:00
|
|
|
full_text*: string
|
2022-05-04 17:17:02 +02:00
|
|
|
# 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
|
2022-05-04 17:17:02 +02:00
|
|
|
color*: string
|
|
|
|
html_text*: string
|
|
|
|
short_text*: string
|
2022-02-06 21:10:06 +01:00
|
|
|
|
2022-02-06 23:07:32 +01:00
|
|
|
type
|
|
|
|
i3BarInput* = object
|
|
|
|
button*: int
|
2022-02-12 16:19:43 +01:00
|
|
|
x*: int
|
|
|
|
y*: int
|
2022-02-06 23:07:32 +01:00
|
|
|
|
2022-05-04 17:17:02 +02:00
|
|
|
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-04 17:17:02 +02:00
|
|
|
var loop* = false
|
|
|
|
var stoploop* = true
|
|
|
|
var dmenu* = true
|
2022-05-03 18:41:33 +02:00
|
|
|
var rofi* = false
|
2022-02-06 21:10:06 +01:00
|
|
|
|
2022-05-04 17:17:02 +02:00
|
|
|
proc newInfo*(title: string = "Info"): Info =
|
2022-04-28 21:58:40 +02:00
|
|
|
return Info(
|
2022-05-04 17:17:02 +02:00
|
|
|
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,
|
2022-05-04 17:17:02 +02:00
|
|
|
background: black,
|
|
|
|
color: foreground,
|
2022-02-27 15:57:40 +01:00
|
|
|
)
|
2022-02-06 23:07:32 +01:00
|
|
|
proc debugLog*(str: string) =
|
|
|
|
let f = open("/tmp/debug.txt",fmAppend)
|
|
|
|
defer: f.close()
|
|
|
|
f.writeLine(str)
|
|
|
|
|
2022-05-04 17:27:50 +02:00
|
|
|
proc switchTwmMode*(mode: string = "default") =
|
2022-05-04 17:17:02 +02:00
|
|
|
# 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
|
2022-05-04 17:27:50 +02:00
|
|
|
discard execCmd("i3-msg mode \"" & mode & "\"")
|
2022-05-04 17:17:02 +02:00
|
|
|
|
2022-02-06 23:07:32 +01:00
|
|
|
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 23:07:32 +01:00
|
|
|
|
2022-02-06 21:10:06 +01:00
|
|
|
proc getArguments*(): seq[string] =
|
|
|
|
let args = commandLineParams()
|
|
|
|
return args
|
|
|
|
|
2022-04-29 10:59:28 +02:00
|
|
|
proc runDMenu*(data: Info, opts: varargs[string], rofi: bool = false): string =
|
2022-05-04 17:17:02 +02:00
|
|
|
# Build dmenu/rofi command
|
2022-05-03 18:41:33 +02:00
|
|
|
var cmd = "echo -e \""
|
2022-05-04 17:17:02 +02:00
|
|
|
# if the text is empty, we don't want to create a menu item of it
|
2022-05-03 18:41:33 +02:00
|
|
|
if $data.full_text != "":
|
|
|
|
cmd &= $data.full_text & "\n"
|
2022-04-28 16:52:45 +02:00
|
|
|
for opt in opts:
|
|
|
|
cmd = cmd & opt & "\n"
|
2022-04-28 21:58:40 +02:00
|
|
|
cmd.removeSuffix("\n")
|
2022-04-29 10:59:28 +02:00
|
|
|
if not rofi:
|
|
|
|
cmd = cmd & "\" | dmenu"
|
|
|
|
else:
|
2022-05-04 17:17:02 +02:00
|
|
|
# run rofi in dmenu mode
|
2022-04-29 10:59:28 +02:00
|
|
|
cmd = cmd & "\" | rofi -dmenu"
|
2022-04-28 21:58:40 +02:00
|
|
|
cmd = cmd & " -l " & $(len(opts) + 1)
|
2022-04-28 13:50:07 +02:00
|
|
|
cmd = cmd & " -p \"" & $data.title & "\""
|
2022-05-04 17:17:02 +02:00
|
|
|
cmd = cmd & " -nb \"" & $data.unselected_bg & "\""
|
|
|
|
cmd = cmd & " -nf \"" & $data.unselected_fg & "\""
|
|
|
|
cmd = cmd & " -sb \"" & $data.selected_bg & "\""
|
|
|
|
cmd = cmd & " -sf \"" & $data.selected_fg & "\""
|
|
|
|
cmd = cmd & " -fn " & font
|
2022-04-28 16:52:45 +02:00
|
|
|
#echo "Dmenu :", cmd
|
2022-05-04 17:17:02 +02:00
|
|
|
# Run command and get output
|
2022-04-28 16:52:45 +02:00
|
|
|
let output = execCmdEx(cmd)
|
|
|
|
let option:string = strip(output[0])
|
|
|
|
return option
|
|
|
|
|
2022-05-04 17:17:02 +02:00
|
|
|
proc outputData*(data: Info, args: varargs[string]): string {.discardable.} =
|
2022-04-28 16:52:45 +02:00
|
|
|
var output = ""
|
2022-05-04 17:17:02 +02:00
|
|
|
if rofi:
|
2022-04-29 10:59:28 +02:00
|
|
|
output = runDmenu(data,args, rofi = true)
|
2022-05-04 17:17:02 +02:00
|
|
|
elif loop:
|
|
|
|
# mainly for i3bar/i3blocks compatible output
|
2022-04-28 16:52:45 +02:00
|
|
|
var j_data = data
|
|
|
|
if j_data.html_text != "":
|
|
|
|
j_data.full_text = j_data.html_text
|
|
|
|
echo $$j_data
|
2022-05-04 17:17:02 +02:00
|
|
|
else:
|
|
|
|
# if all else fails, use dmenu (default)
|
|
|
|
output = runDmenu(data,args)
|
2022-04-28 16:52:45 +02:00
|
|
|
return output
|
|
|
|
|
2022-05-04 17:27:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
# At Start up:
|
|
|
|
|
|
|
|
# Switch bindsym mode back to default as it could be being used.
|
|
|
|
switchTwmMode()
|
|
|
|
|
2022-05-04 17:17:02 +02:00
|
|
|
for arg in getArguments():
|
|
|
|
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
|
2022-04-28 13:50:07 +02:00
|
|
|
|
|
|
|
|