Compare commits

..

No commits in common. "78508e12fd1aeb3c1e87387c6e22d8bda5e8fec9" and "6732cf39bf19fd6bb7c3239dcb6cdc7fc0d4e849" have entirely different histories.

2 changed files with 10 additions and 12 deletions

View file

@ -40,8 +40,8 @@
#!/usr/bin/env sh
case "$(printf "shutdown\\nreboot" | tofi --prompt "Choose your poison")" in
"shutdown") poweroff ;;
"reboot") reboot ;;
"shutdown") systemctl poweroff ;;
"reboot") systemctl reboot ;;
esac
'';
grim = "${pkgs.grim}/bin/grim";
@ -123,6 +123,13 @@ in {
"hyprctl monitors | grep 'HDMI' && hyprctl keyword monitor 'eDP-1, disable'"
];
# Setup plugins
plugin = {
wslayout = {
default_layout = "master";
};
};
cursor = {
no_break_fs_vrr = 1;
no_hardware_cursors = 1;
@ -169,7 +176,6 @@ in {
gaps_in = 3;
gaps_out = 6;
allow_tearing = true;
layout = "master";
};
misc = {
@ -191,11 +197,6 @@ in {
allow_workspace_cycles = true;
};
workspace = [
"1, layout:monocle"
"5, layout:monocle"
];
bind = [
"$mod, Return, exec, $terminal"
"$mod SHIFT, Q, killactive"

View file

@ -27,10 +27,7 @@
# Enable dconf
programs.dconf.enable = true;
# Enable gnome keyring
services.gnome.gnome-keyring.enable = true;
# Setup dbus broker
services.dbus.implementation = "broker";
# services.dbus.implementation = "broker";
};
}