This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/clipse/clipse.nix

23 lines
546 B
Nix

{ config, pkgs, ... }:
{
# configure clipse
home.file.".config/clipse/custom_theme.json".text = ''
{
"useCustomTheme": true,
"DimmedDesc": "#ffffff",
"DimmedTitle": "#ffffff",
"FilteredMatch": "#528bff",
"NormalDesc": "#ffffff",
"NormalTitle": "#ffffff",
"SelectedDesc": "#3465a4",
"SelectedTitle": "#528bff",
"SelectedBorder": "#528bff",
"SelectedDescBorder": "#528bff",
"TitleFore": "#ffffff",
"Titleback": "#528bff",
"StatusMsg": "#ffffff"
}
'';
}