mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-21 16:21:29 +02:00
This commit introduces a change to allow users to set a custom configuration directory for Komorebi to address concerns about $HOME getting cluttered. The custom directory can be set with the environment variable $Env:KOMOREBI_CONFIG_HOME (this should probably be done in $PROFILE). If this variable is not set, komorebi will default to using the $HOME directory. resolve #61
35 lines
906 B
TOML
35 lines
906 B
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.8"
|
|
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 = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
derive-ahk = { path = "../derive-ahk" }
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
|
|
clap = { version = "3", features = ["derive", "wrap_help"] }
|
|
color-eyre = "0.5"
|
|
dirs = "4"
|
|
fs-tail = "0.1"
|
|
heck = "0.4"
|
|
lazy_static = "1"
|
|
paste = "1"
|
|
powershell_script = "0.2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uds_windows = "1"
|
|
|
|
[dependencies.windows]
|
|
version = "0.30"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_UI_WindowsAndMessaging"
|
|
]
|