feat(flameshot): add flameshot profile
This commit is contained in:
parent
f16d4fbce1
commit
d9b48de22a
3 changed files with 32 additions and 1 deletions
|
@ -179,6 +179,7 @@
|
||||||
kitty
|
kitty
|
||||||
rofi
|
rofi
|
||||||
themeing
|
themeing
|
||||||
|
flameshot
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -40,7 +40,6 @@ in
|
||||||
(ifGraphical [
|
(ifGraphical [
|
||||||
speedcrunch
|
speedcrunch
|
||||||
|
|
||||||
flameshot
|
|
||||||
brightnessctl
|
brightnessctl
|
||||||
|
|
||||||
sxiv
|
sxiv
|
||||||
|
|
31
users/profiles/flameshot.nix
Normal file
31
users/profiles/flameshot.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ config, main, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
services.flameshot = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
buttons = "@Variant(\0\0\0\x7f\0\0\0\vQList<int>\0\0\0\0\x14\0\0\0\0\0\0\0\x1\0\0\0\x2\0\0\0\x3\0\0\0\x4\0\0\0\x5\0\0\0\x6\0\0\0\x12\0\0\0\xf\0\0\0\x16\0\0\0\x13\0\0\0\a\0\0\0\b\0\0\0\t\0\0\0\x10\0\0\0\n\0\0\0\v\0\0\0\x17\0\0\0\f\0\0\0\x11)";
|
||||||
|
|
||||||
|
contrastOpacity = 188;
|
||||||
|
contrastUiColor = "#000070";
|
||||||
|
drawColor = "#00ffff";
|
||||||
|
uiColor = "#2e86cf";
|
||||||
|
|
||||||
|
disabledTrayIcon = true;
|
||||||
|
showDesktopNotification = false;
|
||||||
|
showHelp = true;
|
||||||
|
showStartupLaunchMessage = false;
|
||||||
|
startupLaunch = false;
|
||||||
|
|
||||||
|
undoLimit = 100;
|
||||||
|
uploadHistoryMax = 25;
|
||||||
|
|
||||||
|
savePath = "/home/infinidoge/Pictures";
|
||||||
|
saveAsFileExtension = ".png";
|
||||||
|
filenamePattern = "%F_%T";
|
||||||
|
saveAfterCopy = false;
|
||||||
|
savePathFixed = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue