This commit is contained in:
2024-07-14 05:42:54 -05:00
parent 1fe10c4c4f
commit a303cfe3ad
3 changed files with 14 additions and 1 deletions

View File

@@ -17,6 +17,12 @@ profile {
output eDP-1 disable output eDP-1 disable
} }
profile {
output DP-9 enable position 0,1440
output DP-8 enable position 0,0
output eDP-1 disable
}
profile { profile {
output DP-7 enable position 0,1440 output DP-7 enable position 0,1440
output DP-6 enable position 0,0 output DP-6 enable position 0,0

View File

@@ -39,6 +39,10 @@ input "1267:12573:ELAN0412:00_04F3:311D_Touchpad" {
middle_emulation enabled middle_emulation enabled
} }
input "type:pointer" {
accel_profile "flat"
pointer_accel 0
}
# Notification Daemon # Notification Daemon
exec_always swaync 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. # Despite the name, also works for non-floating windows.
# Change normal to inverse to use left mouse button for resizing and right # Change normal to inverse to use left mouse button for resizing and right
# mouse button for dragging. # mouse button for dragging.
floating_modifier control normal #floating_modifier control normal
# Reload the configuration file # Reload the configuration file
bindsym $mod+Shift+c reload bindsym $mod+Shift+c reload

3
.zshrc
View File

@@ -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 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"