This commit is contained in:
parent
e02d7db426
commit
f756c287a9
6 changed files with 70 additions and 34 deletions
|
@ -49,13 +49,14 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
"col.active_border" = "rgba(33ccffee) rgba(00ff99ee) 45deg";
|
"col.active_border" = "rgba(33ccffee) rgba(00ff99ee) 45deg";
|
||||||
"col.inactive_border" = "rgba(595959aa)";
|
"col.inactive_border" = "rgba(595959aa)";
|
||||||
|
|
||||||
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
|
||||||
resize_on_border = false;
|
|
||||||
|
|
||||||
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||||
allow_tearing = false;
|
allow_tearing = false;
|
||||||
|
hover_icon_on_border = true;
|
||||||
|
resize_on_border = true;
|
||||||
layout = "dwindle";
|
layout = "dwindle";
|
||||||
|
snap = {
|
||||||
|
enabled = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
input = {
|
input = {
|
||||||
|
@ -144,6 +145,15 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
gestures = {
|
gestures = {
|
||||||
workspace_swipe = true;
|
workspace_swipe = true;
|
||||||
};
|
};
|
||||||
|
group = {
|
||||||
|
|
||||||
|
"col.border_active" = "0xff601393";
|
||||||
|
|
||||||
|
groupbar = {
|
||||||
|
"col.active" = "0x66601393";
|
||||||
|
"col.inactive" = "0xff340851";
|
||||||
|
};
|
||||||
|
};
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||||
misc = {
|
misc = {
|
||||||
force_default_wallpaper = 0;
|
force_default_wallpaper = 0;
|
||||||
|
@ -179,7 +189,8 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
"$mod, right, movefocus, r"
|
"$mod, right, movefocus, r"
|
||||||
"$mod, up, movefocus, u"
|
"$mod, up, movefocus, u"
|
||||||
"$mod, down, movefocus, d"
|
"$mod, down, movefocus, d"
|
||||||
|
"CTRL, G, togglegroup"
|
||||||
|
"ALT, Tab, changegroupactive"
|
||||||
# Example special workspace (scratchpad)
|
# Example special workspace (scratchpad)
|
||||||
"$mod, W, togglespecialworkspace, magic"
|
"$mod, W, togglespecialworkspace, magic"
|
||||||
"$mod SHIFT, W, movetoworkspace, special:magic"
|
"$mod SHIFT, W, movetoworkspace, special:magic"
|
||||||
|
@ -190,16 +201,16 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
"$mod, S, exec, ${cliphist} list | ${desktop.runner.dmenu} | ${cliphist} decode | ${copy}"
|
"$mod, S, exec, ${cliphist} list | ${desktop.runner.dmenu} | ${cliphist} decode | ${copy}"
|
||||||
|
|
||||||
#: Brightness and Media {{{
|
#: Brightness and Media {{{
|
||||||
",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%"
|
",XF86MonBrightnessUp, exec, ${getExe pkgs.brightnessctl} s +10%"
|
||||||
",XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl s 10%-"
|
",XF86MonBrightnessDown, exec, ${getExe pkgs.brightnessctl} s 10%-"
|
||||||
",XF86AudioRaiseVolume, exec, ${getExe pkgs.pamixer} -u && ${pkgs.pamixer}/bin/pamixer -i 5"
|
",XF86AudioRaiseVolume, exec, ${getExe pkgs.pamixer} -u && ${getExe pkgs.pamixer} -i 5"
|
||||||
",XF86AudioLowerVolume, exec, ${getExe pkgs.pamixer} -u && ${pkgs.pamixer}/bin/pamixer -d 5"
|
",XF86AudioLowerVolume, exec, ${getExe pkgs.pamixer} -u && ${getExe pkgs.pamixer} -d 5"
|
||||||
",XF86AudioMicMute, exec, ${pkgs.pamixer}/bin/pamixer --default-source -m"
|
",XF86AudioMicMute, exec, ${getExe pkgs.pamixer} --default-source -m"
|
||||||
",XF86AudioMute, exec, ${pkgs.pamixer}/bin/pamixer -t"
|
",XF86AudioMute, exec, ${getExe pkgs.pamixer} -t"
|
||||||
",XF86AudioPlay, exec, ${pkgs.playerctl}/bin/playerctl play-pause"
|
",XF86AudioPlay, exec, ${getExe pkgs.playerctl} play-pause"
|
||||||
",XF86AudioPause, exec, ${pkgs.playerctl}/bin/playerctl play-pause"
|
",XF86AudioPause, exec, ${getExe pkgs.playerctl} play-pause"
|
||||||
",XF86AudioNext, exec, ${pkgs.playerctl}/bin/playerctl next"
|
",XF86AudioNext, exec, ${getExe pkgs.playerctl} next"
|
||||||
",XF86AudioPrev, exec, ${pkgs.playerctl}/bin/playerctl previous"
|
",XF86AudioPrev, exec, ${getExe pkgs.playerctl} previous"
|
||||||
#: }}}
|
#: }}}
|
||||||
|
|
||||||
# Workspaces
|
# Workspaces
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
scripts = import ../../home/scripts {
|
scripts = import ../scripts {
|
||||||
inherit lib config;
|
inherit lib config;
|
||||||
pkgs = prev.pkgs;
|
pkgs = prev.pkgs;
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,9 @@
|
||||||
let
|
let
|
||||||
inherit (pkgs.writers) writeFishBin writeBashBin;
|
inherit (pkgs.writers) writeFishBin writeBashBin;
|
||||||
inherit (lib.my) getExe;
|
inherit (lib.my) getExe;
|
||||||
|
|
||||||
runner = config.modules.system.roles.desktop.runner;
|
runner = config.modules.system.roles.desktop.runner;
|
||||||
|
|
||||||
nixos-rebuild =
|
nixos-rebuild =
|
||||||
name: word:
|
name: word:
|
||||||
writeFishBin name ''
|
writeFishBin name ''
|
||||||
|
@ -18,24 +20,47 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
screenshot =
|
screenshot = pkgs.writeShellApplication {
|
||||||
with pkgs;
|
name = "screenshot";
|
||||||
writeShellApplication {
|
runtimeInputs = with pkgs; [
|
||||||
name = "screenshot";
|
wl-clipboard
|
||||||
runtimeInputs = [
|
libnotify
|
||||||
slurp
|
hyprshot
|
||||||
wl-clipboard
|
xdg-utils
|
||||||
libnotify
|
];
|
||||||
];
|
text = ''
|
||||||
text = ''
|
set -e
|
||||||
location="$HOME/Pictures/Screenshots/$(date +%Y-%m-%d-%H%M%S)-screenshot.png";
|
location="$XDG_PICTURES_DIR/screenshots/$(date +%Y-%m-%d-%H%M%S)-screenshot.png";
|
||||||
|
|
||||||
if zone=$(slurp); then
|
hyprshot -r -z -m region | tee "$location" | wl-copy --type image/png;
|
||||||
grim -t png -g "$zone" - | wl-copy --type image/png && wl-paste > "$location" \
|
|
||||||
&& notify-send --app-name Screenshot -i "$location" --urgency=low "Screenshot copied to clipboard" "Screenshot created at $location";
|
body="<img src=\"$location\"\>"
|
||||||
fi
|
|
||||||
'';
|
response=$(
|
||||||
};
|
notify-send \
|
||||||
|
"Copied to clipboard" \
|
||||||
|
"$body" \
|
||||||
|
--app-name Screenshot \
|
||||||
|
-i "$location" \
|
||||||
|
--urgency=low \
|
||||||
|
--action=COPY=Copy \
|
||||||
|
--action=OPEN=Open \
|
||||||
|
--action=DELETE=Delete
|
||||||
|
)
|
||||||
|
|
||||||
|
case "$response" in
|
||||||
|
"DELETE")
|
||||||
|
rm "$location"
|
||||||
|
;;
|
||||||
|
"COPY")
|
||||||
|
wl-copy <"$location"
|
||||||
|
;;
|
||||||
|
"OPEN")
|
||||||
|
xdg-open "$location"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
set-background = writeFishBin "set-background" ''
|
set-background = writeFishBin "set-background" ''
|
||||||
argparse 'f/file=!test -e "$_flag_value"' -- $argv; or return
|
argparse 'f/file=!test -e "$_flag_value"' -- $argv; or return
|
||||||
|
@ -122,5 +147,4 @@ in
|
||||||
Lock) exec loginctl lock-session "$${XDG_SESSION_ID-}" ;;
|
Lock) exec loginctl lock-session "$${XDG_SESSION_ID-}" ;;
|
||||||
esac
|
esac
|
||||||
'';
|
'';
|
||||||
|
|
||||||
}
|
}
|
|
@ -71,5 +71,6 @@ in
|
||||||
scripts.editsym
|
scripts.editsym
|
||||||
scripts.deployswitch
|
scripts.deployswitch
|
||||||
scripts.deploytest
|
scripts.deploytest
|
||||||
|
scripts.screenshot
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue