diff options
| -rw-r--r-- | .config/i3/config | 6 | ||||
| -rw-r--r-- | .config/nvim/lua/map.lua | 6 | ||||
| -rw-r--r-- | .config/polybar/config.ini | 4 |
3 files changed, 9 insertions, 7 deletions
diff --git a/.config/i3/config b/.config/i3/config index fb8c457..ad583df 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -7,8 +7,8 @@ exec --no-startup-id nm-applet exec xrandr --output DVI-D-0 --auto --right-of HDMI-A-0 exec setxkbmap -option "caps:super" exec nitrogen --restore -exec alacritty --hold -e sudo pacman -Syu -exec unclutter --timeout 2 +exec kitty --hold sh -c "sudo pacman -Syu" +exec xbanish -t1 set $refresh_i3status killall -SIGUSR1 i3status bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +2% && $refresh_i3status @@ -30,7 +30,7 @@ smart_borders on tiling_drag modifier titlebar -bindsym $mod+Return exec alacritty +bindsym $mod+Return exec kitty bindsym Print exec flameshot gui bindsym $mod+u exec setxkbmap us diff --git a/.config/nvim/lua/map.lua b/.config/nvim/lua/map.lua index f94cd9f..3103f56 100644 --- a/.config/nvim/lua/map.lua +++ b/.config/nvim/lua/map.lua @@ -12,8 +12,10 @@ vim.keymap.set("n", "<C-l>", "<C-w>l", {}) vim.keymap.set("n", "<C-u>", "u", {}) vim.keymap.set("n", "u", "", {}) -vim.keymap.set("n", "<leader>b", "^", {}) -vim.keymap.set("n", "<leader>w", "$", {}) +vim.keymap.set({ "n", "v" }, "<leader>b", "^", {}) +vim.keymap.set({ "n", "v" }, "<leader>w", "$", {}) +vim.keymap.set({ "n", "v" }, "^", "", {}) +vim.keymap.set({ "n", "v" }, "$", "", {}) vim.keymap.set({ "v", "n" }, ".", "<C-u>zz", {}) vim.keymap.set({ "v", "n" }, ",", "<C-d>zz", {}) diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini index 00ca4ca..dc8d0cd 100644 --- a/.config/polybar/config.ini +++ b/.config/polybar/config.ini @@ -54,8 +54,8 @@ modules-left = xworkspaces modules-center = modules-right = pulseaudio date -cursor-click = pointer -cursor-scroll = ns-resize +; cursor-click = pointer +; cursor-scroll = ns-resize enable-ipc = true |
