mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
19 lines
394 B
Nix
19 lines
394 B
Nix
{ pkgs, config, ... }:
|
|
|
|
let
|
|
inherit (import ../../options.nix) screenshotDir;
|
|
in {
|
|
home.file.".config/swappy/config".text = ''
|
|
[Default]
|
|
save_dir=${screenshotDir}
|
|
save_filename_format=swappy-%Y%m%d-%H%M%S.png
|
|
show_panel=false
|
|
line_size=5
|
|
text_size=20
|
|
text_font=Ubuntu
|
|
paint_mode=brush
|
|
early_exit=true
|
|
fill_shape=false
|
|
'';
|
|
}
|