From a303cfe3adf100e8fb9977053f62ea287c250f6b Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sun, 14 Jul 2024 05:42:54 -0500 Subject: [PATCH] update --- .config/kanshi/config | 6 ++++++ .config/sway/config | 6 +++++- .zshrc | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.config/kanshi/config b/.config/kanshi/config index 9381aca..1adf28d 100644 --- a/.config/kanshi/config +++ b/.config/kanshi/config @@ -17,6 +17,12 @@ profile { output eDP-1 disable } +profile { + output DP-9 enable position 0,1440 + output DP-8 enable position 0,0 + output eDP-1 disable +} + profile { output DP-7 enable position 0,1440 output DP-6 enable position 0,0 diff --git a/.config/sway/config b/.config/sway/config index eb901bb..e9fded1 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -39,6 +39,10 @@ input "1267:12573:ELAN0412:00_04F3:311D_Touchpad" { middle_emulation enabled } +input "type:pointer" { + accel_profile "flat" + pointer_accel 0 +} # Notification Daemon exec_always swaync @@ -62,7 +66,7 @@ bindsym $mod+Shift+n exec swaync-client -t -sw # Despite the name, also works for non-floating windows. # Change normal to inverse to use left mouse button for resizing and right # mouse button for dragging. - floating_modifier control normal + #floating_modifier control normal # Reload the configuration file bindsym $mod+Shift+c reload diff --git a/.zshrc b/.zshrc index d3a46c4..8efa725 100644 --- a/.zshrc +++ b/.zshrc @@ -254,3 +254,6 @@ function open_command() { } if [ -e /home/user/.nix-profile/etc/profile.d/nix.sh ]; then . /home/user/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer +# Install Ruby Gems to ~/gems +export GEM_HOME="$HOME/gems" +export PATH="$HOME/gems/bin:$PATH"