Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions lok.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[defaults]
parallel = true
timeout = 300
command_wrapper = "nix-shell --run '{cmd}'"

[backends.claude]
enabled = true
command = "claude"
args = []

[backends.codex]
enabled = true
command = "codex"
args = ["exec", "--json", "-s", "read-only"]

[backends.gemini]
enabled = true
command = "npx"
args = ["@google/gemini-cli"]
skip_lines = 1
timeout = 600
4 changes: 1 addition & 3 deletions src/player/mod.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
use crate::player::thread::JoinHandle;

use std::{
fs::File,
path::{Path, PathBuf},
sync::atomic::{AtomicBool, Ordering},
sync::{Arc, Mutex},
thread,
thread::{self, JoinHandle},
time::Duration,
};

Expand Down