mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 18:33:52 +00:00
48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{ lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.module.programs.gui.qbittorrent;
|
|
in {
|
|
options = {
|
|
module.programs.gui.qbittorrent = { enable = mkEnableOption ""; };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
xdg.configFile = {
|
|
# COLORSCHEME
|
|
"qBittorrent/themes/default/config.json".text = ''
|
|
{
|
|
"colors.dark": {
|
|
"Log.BannedPeer": "#b66467",
|
|
"Log.Critical": "#b66467",
|
|
"Log.Info": "#8da3b9",
|
|
"Log.TimeStamp": "#bbb6b6",
|
|
"Log.Warning": "#d9bc8c",
|
|
"TransferList.CheckingDownloading": "#8c977d",
|
|
"TransferList.CheckingResumeData": "#8c977d",
|
|
"TransferList.CheckingUploading": "#8c977d",
|
|
"TransferList.Downloading": "#d9bc8c",
|
|
"TransferList.DownloadingMetadata": "#d9bc8c",
|
|
"TransferList.Error": "#b66467",
|
|
"TransferList.ForcedDownloading": "#d9bc8c",
|
|
"TransferList.ForcedDownloadingMetadata": "#d9bc8c",
|
|
"TransferList.ForcedUploading": "#d9bc8c",
|
|
"TransferList.MissingFiles": "#b66467",
|
|
"TransferList.Moving": "#8aa6a2",
|
|
"TransferList.PausedDownloading": "#a988b0",
|
|
"TransferList.PausedUploading": "#a988b0",
|
|
"TransferList.QueuedDownloading": "#d9bc8c",
|
|
"TransferList.QueuedUploading": "#d9bc8c",
|
|
"TransferList.StalledDownloading": "#8c977d",
|
|
"TransferList.StalledUploading": "#bbb6b6",
|
|
"TransferList.Uploading": "#bbb6b6"
|
|
},
|
|
"version": 2
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
|