ITADN

Provide presets (pre-built configurations with widgets)

#5Openvmarcosp 创建于 2024-07-07
V
vmarcospcommented
Since the configurations are simply objects exported and read by the CLI, we could offer pre-built configurations with various options for the status bar (left), window management, theming, and more. ```typescript import { minimal } from 'better-tmux/presets'' export default minimal ``` Customizing: ```typescript import { minimal } from 'better-tmux/presets' export default { ...minimal, theme: 'nord' } ```
0 条评论