diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-14 02:11:57 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-14 02:11:57 -0700 |
commit | da4263835389068c372712fe886e57d4631d6c40 (patch) | |
tree | e9213d6abd23d874f81581a3595a2cbba283a4fc /home | |
parent | ed68e6541c89e65ee654c1eb9ed9dce64ac1613e (diff) | |
download | nix-da4263835389068c372712fe886e57d4631d6c40.tar nix-da4263835389068c372712fe886e57d4631d6c40.tar.gz nix-da4263835389068c372712fe886e57d4631d6c40.tar.bz2 nix-da4263835389068c372712fe886e57d4631d6c40.tar.lz nix-da4263835389068c372712fe886e57d4631d6c40.tar.xz nix-da4263835389068c372712fe886e57d4631d6c40.tar.zst nix-da4263835389068c372712fe886e57d4631d6c40.zip |
Update i3 config
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/optional/desktops/i3/default.nix | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/home/nipsy/common/optional/desktops/i3/default.nix b/home/nipsy/common/optional/desktops/i3/default.nix index 4eb0170..5e40312 100644 --- a/home/nipsy/common/optional/desktops/i3/default.nix +++ b/home/nipsy/common/optional/desktops/i3/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ lib, pkgs, ... }: { home.packages = [ pkgs.dmenu @@ -9,9 +9,53 @@ enable = true; }; - services.network-manager-applet.enable = true; + services = { + network-manager-applet.enable = true; + xscreensaver.enable = true; + }; + + xsession = { + enable = true; + initExtra = '' + xrandr --output eDP --primary --scale 0.5 + xinput set-prop "ELAN06FA:00 04F3:3202 Touchpad" "libinput Middle Emulation Enabled" 0 + xset b off + xset r on + ''; + }; xsession.windowManager.i3 = { + config = rec { + defaultWorkspace = "workspace number 1"; + modifier = "Mod4"; + keybindings = lib.mkOptionDefault { + "${modifier}+Return" = "exec ${pkgs.st}/bin/st"; + "${modifier}+Shift+e" = "exec ${pkgs.i3}/bin/i3-msg exit"; + }; + startup = [ + { + command = "${pkgs.feh}/bin/feh --no-fehbg --bg-center ~/bg/StarWarsRetro-BrentCheshire.jpg"; + always = true; + notification = false; + } + ]; + window.border = 0; + window.commands = [ + { + command = "floating enable"; + criteria = { + class = "Steam"; + title = "Friends List"; + }; + } + { + command = "border none"; + criteria = { + all = true; + }; + } + ]; + }; enable = true; #extraConfig = (builtins.readFile ./config); }; |