Compare commits
No commits in common. "ed0d1e41d636bea8b1aea398b2f33a75128c2793" and "1535800e2f4165b7cf6bc89c71c789c342ee27a7" have entirely different histories.
ed0d1e41d6
...
1535800e2f
@ -260,10 +260,6 @@ in
|
|||||||
./graphical_session_target.nix
|
./graphical_session_target.nix
|
||||||
./iso.nix
|
./iso.nix
|
||||||
./rofimoji.nix
|
./rofimoji.nix
|
||||||
./lockscreen.nix
|
|
||||||
./screenshot.nix
|
|
||||||
./force_focus.nix
|
|
||||||
./notification.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
options.me.swayIncludes = lib.mkOption {
|
options.me.swayIncludes = lib.mkOption {
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
force_focus_sway_config = pkgs.writeTextFile {
|
|
||||||
name = "force_focus.conf";
|
|
||||||
text = ''
|
|
||||||
mode "force focus" {
|
|
||||||
bindsym $mod+Shift+Escape fullscreen; mode "default"
|
|
||||||
}
|
|
||||||
bindsym $mod+Shift+f fullscreen; mode "force focus"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [ ];
|
|
||||||
|
|
||||||
config = lib.mkIf config.me.graphical {
|
|
||||||
me.swayIncludes = [
|
|
||||||
force_focus_sway_config
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
lockscreen_sway_config = pkgs.writeTextFile {
|
|
||||||
name = "lockscreen.conf";
|
|
||||||
text = ''
|
|
||||||
set $lock ${pkgs.swaylock}/bin/swaylock -f -c 000000
|
|
||||||
|
|
||||||
# Hotkey to lock the screen
|
|
||||||
bindsym $mod+l exec $lock
|
|
||||||
|
|
||||||
exec ${pkgs.swayidle}/bin/swayidle -w \
|
|
||||||
timeout 300 '$lock' \
|
|
||||||
timeout 600 '${pkgs.sway}/bin/swaymsg "output * dpms off"' \
|
|
||||||
resume '${pkgs.sway}/bin/swaymsg "output * dpms on"' \
|
|
||||||
before-sleep '$lock'
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [ ];
|
|
||||||
|
|
||||||
config = lib.mkIf config.me.graphical {
|
|
||||||
me.swayIncludes = [
|
|
||||||
lockscreen_sway_config
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
notification_sway_config = pkgs.writeTextFile {
|
|
||||||
name = "notification.conf";
|
|
||||||
text =
|
|
||||||
builtins.replaceStrings
|
|
||||||
[ "@mako@" "@makoctl@" ]
|
|
||||||
[ "${pkgs.mako}/bin/mako" "${pkgs.mako}/bin/makoctl" ]
|
|
||||||
''
|
|
||||||
bindsym $mod+Escape exec @makoctl@ dismiss
|
|
||||||
bindsym $mod+Shift+Escape exec @makoctl@ invoke
|
|
||||||
|
|
||||||
# Notifications
|
|
||||||
exec @mako@
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [ ];
|
|
||||||
|
|
||||||
config = lib.mkIf config.me.graphical {
|
|
||||||
me.swayIncludes = [
|
|
||||||
notification_sway_config
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
screenshot_sway_config = pkgs.writeTextFile {
|
|
||||||
name = "screenshot.conf";
|
|
||||||
text =
|
|
||||||
builtins.replaceStrings
|
|
||||||
[ "@grim@" "@wl-screenrec@" "@pactl@" "@grep@" "@slurp@" ]
|
|
||||||
[
|
|
||||||
"${pkgs.grim}/bin/grim"
|
|
||||||
"${pkgs.wl-screenrec}/bin/wl-screenrec"
|
|
||||||
"${pkgs.pulseaudio}/bin/pactl"
|
|
||||||
"${pkgs.gnugrep}/bin/grep"
|
|
||||||
"${pkgs.slurp}/bin/slurp"
|
|
||||||
]
|
|
||||||
''
|
|
||||||
# Screenshots
|
|
||||||
#bindsym $mod+print exec @slurp@ | @grim@ -g - $(xdg-user-dir PICTURES)/$(date +'screenshot_%Y-%m-%d-%H%M%S.png')
|
|
||||||
bindsym $mod+print exec @slurp@ | @grim@ -g - "$HOME/$(date +'screenshot_%Y-%m-%d-%H%M%S.png')"
|
|
||||||
bindsym print exec @grim@ "$HOME/$(date +'screenshot_%Y-%m-%d-%H%M%S.png')"
|
|
||||||
# Maybe add --audio flag? can optionally specify specific device name from `@pactl@ list sources | @grep@ Name`
|
|
||||||
bindsym $mod+Shift+print exec @wl-screenrec@ -g "$(@slurp@)" --codec av1 -f "$HOME/$(date +'screencast_%Y-%m-%d-%H%M%S.mkv')"
|
|
||||||
bindsym Shift+print exec @wl-screenrec@ --codec av1 -f "$HOME/$(date +'screencast_%Y-%m-%d-%H%M%S.mkv')"
|
|
||||||
bindsym $mod+ctrl+Shift+print exec pkill -SIGINT @wl-screenrec@
|
|
||||||
# Need to make a hotkey to end the recording
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [ ];
|
|
||||||
|
|
||||||
config = lib.mkIf config.me.graphical {
|
|
||||||
me.swayIncludes = [
|
|
||||||
screenshot_sway_config
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user