This commit is contained in:
talksik
2023-11-24 13:55:54 -08:00
parent ccc6c9ec4d
commit 4815f86c10
3 changed files with 18 additions and 6 deletions
+2
View File
@@ -43,3 +43,5 @@ lfcd() {
}
alias today='$HOME/.nb/today.sh'
shopt -s extglob
+13 -6
View File
@@ -10,7 +10,7 @@
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
# Set mod key (Mod1=<Alt>, Mod4=<Super>)
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
+3
View File
@@ -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)