From 4815f86c107ab27657f6a8265edbdfe1867183fa Mon Sep 17 00:00:00 2001 From: talksik Date: Fri, 24 Nov 2023 13:55:54 -0800 Subject: [PATCH] boom --- .bashrc | 2 ++ .config/i3/config | 19 +++++++++++++------ .config/nvim/lua/talksik/packer.lua | 3 +++ 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.bashrc b/.bashrc index d7e1fc8..9afd9d7 100644 --- a/.bashrc +++ b/.bashrc @@ -43,3 +43,5 @@ lfcd() { } alias today='$HOME/.nb/today.sh' + +shopt -s extglob diff --git a/.config/i3/config b/.config/i3/config index 7c51fd7..38b130a 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -10,7 +10,7 @@ # Please see https://i3wm.org/docs/userguide.html for a complete reference! # Set mod key (Mod1=, Mod4=) -set $mod Mod4 +set $mod Mod1 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. @@ -187,19 +187,26 @@ bindsym $mod+r mode "resize" # Start i3bar to display a workspace bar (plus the system information i3status # finds out, if available) -# bar { -# status_command i3status -# } +bar { + status_command i3status +} # exec_always --no-startup-id xrandr --output eDP-1 --off + +# maps touch screen to target the small monitor +# TODO: make sure to change the output number based on what is outputted by `xinput` command and look for "waveshare..." +exec_always --no-startup-id xinput map-to-output 17 HDMI-1 exec_always --no-startup-id xrdb ~/.Xresources exec_always --no-startup-id xset r rate 200 30 exec_always --no-startup-id /usr/bin/feh --bg-scale '/home/talksik/wallpaper.jpg' exec --no-startup-id picom --active-opacity .95 --inactive-opacity .70 # emoji picker -bindsym $mod+y exec --no-startup-id "/home/talksik/code/rofi-emoji/emoji.sh" +# bindsym $mod+y --no-startup-id "/home/talksik/code/rofi-emoji/emoji.sh" +#lock +bindsym $mod+y exec "i3lock" +bindsym $mod+Shift+y exec "i3lock-fancy -p" ##### GAPS - must have i3 version > 4.22 # Inner gaps for all windows: space between two adjacent windows (or split containers). @@ -207,5 +214,5 @@ gaps inner 5px # Outer gaps for all windows: space along the screen edges. gaps outer 5px -exec_always --no-startup-id $HOME/.config/polybar/launch.sh --shades +# exec_always --no-startup-id $HOME/.config/polybar/launch.sh --shades diff --git a/.config/nvim/lua/talksik/packer.lua b/.config/nvim/lua/talksik/packer.lua index 9851abc..a93889a 100644 --- a/.config/nvim/lua/talksik/packer.lua +++ b/.config/nvim/lua/talksik/packer.lua @@ -111,5 +111,8 @@ return require('packer').startup(function(use) -- version 2.0 use("lukas-reineke/indent-blankline.nvim") + + use {"ellisonleao/glow.nvim", config = function() require("glow").setup() end} end) +