mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-25 02:41:13 +01:00
This commit adds a log command directly to the komorebic cli to make it easier for users to check the logs if they don't have tail installed or are not familiar with it. A separate logfile with ANSI color codes is now being written to the user's tempdir, which is tailed by the log command until the process is halted by a Ctrl-C signal.
25 lines
738 B
TOML
25 lines
738 B
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.0"
|
|
authors = ["Jade Iqbal <jadeiqbal@fastmail.com>"]
|
|
description = "The command-line interface for Komorebi, a tiling window manager for Windows"
|
|
categories = ["cli", "tiling-window-manager", "windows"]
|
|
repository = "https://github.com/LGUG2Z/komorebi"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bindings = { package = "bindings", path = "../bindings" }
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
|
|
clap = "3.0.0-beta.4"
|
|
color-eyre = "0.5"
|
|
dirs = "3"
|
|
fs-tail = "0.1"
|
|
paste = "1"
|
|
powershell_script = "0.2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uds_windows = "1" |