mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:03:55 -05:00
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home;
|
|
hyprctl = lib.getExe' config.wayland.windowManager.hyprland.package "hyprctl";
|
|
virtKeyboard = lib.getExe' pkgs.squeekboard "squeekboard";
|
|
in {
|
|
clamshell = pkgs.writeShellScript "hyprland-clamshell" ''
|
|
EDP_STATUS=$(${hyprctl} monitors all | grep -A 15 "Monitor eDP-1" | grep "disabled:")
|
|
|
|
if [ "$1" == "on" ]; then
|
|
if [[ "$(${hyprctl} monitors all)" =~ \s(DP|HDMI)-[0-9]+ ]]; then
|
|
${hyprctl} keyword monitor "eDP-1, disable"
|
|
fi
|
|
elif [ "$1" == "off" ]; then
|
|
# Check if the monitor is disabled
|
|
if echo "$EDP_STATUS" | grep -q "disabled: true"; then
|
|
${
|
|
lib.strings.concatMapStringsSep "${hyprctl}\n"
|
|
(monitor: ''${hyprctl} keyword monitor "${monitor}"'')
|
|
cfg.desktop.hyprland.laptopMonitors
|
|
}
|
|
fi
|
|
fi
|
|
'';
|
|
|
|
tablet = pkgs.writeShellScript "hyprland-tablet" ''
|
|
STATE=`${lib.getExe pkgs.dconf} read /org/gnome/desktop/a11y/applications/screen-keyboard-enabled`
|
|
|
|
if [ $STATE -z ] || [ $STATE == "false" ]; then
|
|
if ! [ `pgrep -f ${virtKeyboard}` ]; then
|
|
${virtKeyboard} &
|
|
fi
|
|
${lib.getExe pkgs.dconf} write /org/gnome/desktop/a11y/applications/screen-keyboard-enabled true
|
|
elif [ $STATE == "true" ]; then
|
|
${lib.getExe pkgs.dconf} write /org/gnome/desktop/a11y/applications/screen-keyboard-enabled false
|
|
fi
|
|
'';
|
|
}
|