readme changes, added passwurrd to readme
This commit is contained in:
parent
9adec53b26
commit
3756444021
2 changed files with 23 additions and 17 deletions
|
@ -20,10 +20,8 @@ which are selectable options in dmenu.
|
||||||
- `remmina_choosurr` reads the files in your remmina config directory and allows you to connect to and edit them
|
- `remmina_choosurr` reads the files in your remmina config directory and allows you to connect to and edit them
|
||||||
- `translaturr` utilises libretranslate (you'll need and API key or your own instance) to translate test. Prefix the text with `en>de`, `de>en`, `en>fr`, etc. as you need. Must be compiled with `-d:ssl`
|
- `translaturr` utilises libretranslate (you'll need and API key or your own instance) to translate test. Prefix the text with `en>de`, `de>en`, `en>fr`, etc. as you need. Must be compiled with `-d:ssl`
|
||||||
- `clipurr` clipboard manager
|
- `clipurr` clipboard manager
|
||||||
|
- `passwuurd` a passmenu clone, that works in rofi too
|
||||||
The next two do not work with `rofi` unless you have `alias dmenu=rofi` set, but they're pretty nice tools
|
- `cmd_wrappurr` a basic tool to run other `dmenu` related tools with uniform styling.
|
||||||
|
|
||||||
- `cmd_wrappurr` inspired by passmenu_wrapper, a basic tool to run other `dmenu` related tools with uniform styling.
|
|
||||||
- For example: `dmenu_run`, `clipmenu`, `passmenu` etc.
|
- For example: `dmenu_run`, `clipmenu`, `passmenu` etc.
|
||||||
|
|
||||||
### Why do all the tools have "urr" in them?
|
### Why do all the tools have "urr" in them?
|
||||||
|
|
|
@ -2,7 +2,11 @@ import ../../globurrl
|
||||||
import std/[osproc,json,strutils]
|
import std/[osproc,json,strutils]
|
||||||
|
|
||||||
const I3_WORKSPACES = "i3-msg -t get_workspaces"
|
const I3_WORKSPACES = "i3-msg -t get_workspaces"
|
||||||
|
const SWAY_WORKSPACES = "swaymsg -t get_workspaces"
|
||||||
|
let WORKSPACES = if wayland: SWAY_WORKSPACES else: I3_WORKSPACES
|
||||||
const I3_TREE = "i3-msg -t get_tree"
|
const I3_TREE = "i3-msg -t get_tree"
|
||||||
|
const SWAY_TREE = "swaymsg -t get_tree"
|
||||||
|
let TREE = if wayland: SWAY_TREE else: I3_TREE
|
||||||
const VISIBLE = "#"
|
const VISIBLE = "#"
|
||||||
const URGENT = "!"
|
const URGENT = "!"
|
||||||
const FOCUSED = "%"
|
const FOCUSED = "%"
|
||||||
|
@ -64,6 +68,10 @@ proc switchWorkspace(workspace: string) =
|
||||||
let ws = findWorkspace(workspace)
|
let ws = findWorkspace(workspace)
|
||||||
if ws.num == current_workspace:
|
if ws.num == current_workspace:
|
||||||
return
|
return
|
||||||
|
if wayland:
|
||||||
|
let cmd = "swaymsg workspace " & $ws.num
|
||||||
|
discard execCmd(cmd)
|
||||||
|
else:
|
||||||
let cmd = "i3-msg workspace " & $ws.num
|
let cmd = "i3-msg workspace " & $ws.num
|
||||||
discard execCmd(cmd)
|
discard execCmd(cmd)
|
||||||
showWorkspaces()
|
showWorkspaces()
|
||||||
|
@ -159,14 +167,14 @@ proc findWorkspacesTree(node: JsonNode, parent: Workspace = Workspace()) =
|
||||||
return
|
return
|
||||||
|
|
||||||
proc getTree() =
|
proc getTree() =
|
||||||
let cur_workspaces = execCmdEx(I3_TREE)
|
let cur_workspaces = execCmdEx(TREE)
|
||||||
if cur_workspaces.output != "":
|
if cur_workspaces.output != "":
|
||||||
let root = parseJson(cur_workspaces.output)
|
let root = parseJson(cur_workspaces.output)
|
||||||
findWorkspacesTree(root)
|
findWorkspacesTree(root)
|
||||||
return
|
return
|
||||||
|
|
||||||
proc getWorkspaces(): seq[Workspace] =
|
proc getWorkspaces(): seq[Workspace] =
|
||||||
let cur_workspaces = execCmdEx(I3_WORKSPACES)
|
let cur_workspaces = execCmdEx(WORKSPACES)
|
||||||
if cur_workspaces.output != "":
|
if cur_workspaces.output != "":
|
||||||
let ws = parseJson(cur_workspaces.output)
|
let ws = parseJson(cur_workspaces.output)
|
||||||
for w in ws:
|
for w in ws:
|
||||||
|
|
Loading…
Reference in a new issue