This commit is contained in:
clint 2022-09-01 10:32:09 -05:00
parent 21ffbcae3d
commit c54e9059e3
3 changed files with 21 additions and 8 deletions

View File

@ -42,7 +42,9 @@ bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ to
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
# Fix monitor setup on bootup # Fix monitor setup on bootup
exec xrandr --output DVI-D-0 --off --output HDMI-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-0 --off --output DP-1 --off --output HDMI-1 --mode 1920x1080 --pos 1923x0 --rotate normal --output VGA-1-1 --off --output HDMI-1-1 --off # exec xrandr --output DVI-D-0 --off --output HDMI-2 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-0 --off --output DP-1 --off --output HDMI-1 --mode 1920x1080 --pos 1923x0 --rotate normal --output VGA-1-1 --off --output HDMI-1-1 --off
exec ~/scripts/xrandr_dual_monitor.sh
# Use Mouse+$mod to drag floating windows to their wanted position # Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod floating_modifier $mod
@ -164,9 +166,9 @@ bindsym $mod+Shift+9 move container to workspace number $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10 bindsym $mod+Shift+0 move container to workspace number $ws10
# tryin some stuff, not sure if this is what i want # tryin some stuff, not sure if this is what i want
workspace $ws1 output HDMI-0 workspace $ws1 output HDMI-2
workspace $ws2 output HDMI-1 workspace $ws2 output HDMI-1
workspace $ws3 output HDMI-0 workspace $ws3 output HDMI-2
workspace $ws4 output HDMI-1 workspace $ws4 output HDMI-1
# set which programs open in which workspaces # set which programs open in which workspaces
@ -247,7 +249,7 @@ set $bar-inactive_workspace #755B69
#} #}
# set background on startup # set background on startup
set $wallpaper ~/Pictures/wallpapers/ocean_steps.jpg set $wallpaper ~/Pictures/wallpapers/mountain_moon.jpg
exec --no-startup-id feh --bg-fill $wallpaper exec --no-startup-id feh --bg-fill $wallpaper
# turn picom on on start up # turn picom on on start up
@ -272,12 +274,12 @@ client.focused_inactive $bd-color #111111 #ffffff #333333 #111111
client.unfocused $bd-color #111111 #ffffff #333333 #333333 client.unfocused $bd-color #111111 #ffffff #333333 #333333
# lock screen # lock screen
bindsym $mod+l exec ~/.scripts/lock.sh bindsym $mod+l exec ~/scripts/lock.sh
# dmenu stuff # dmenu stuff
bindsym $mod+c exec ~/.scripts/dmenu_configs.sh bindsym $mod+c exec ~/scripts/dmenu_configs.sh
bindsym $mod+p exec ~/.scripts/dmenu_wallpaper.sh bindsym $mod+p exec ~/scripts/dmenu_wallpaper.sh
bindsym $mod+x exec ~/.scripts/dmenu_shutdown.sh bindsym $mod+x exec ~/scripts/dmenu_shutdown.sh
# common programs # common programs
bindsym $mod+Shift+w exec firefox bindsym $mod+Shift+w exec firefox

View File

@ -72,3 +72,13 @@ autocmd BufEnter * if bufname('#') =~ 'NERD_tree_\d\+' && bufname('%') !~ 'NERD_
" Open the existing NERDTree on each new tab. " Open the existing NERDTree on each new tab.
autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
" Show hidden
let NERDTreeShowHidden=1
" colorscheme moonfly
" colorscheme vim-monokai-tasty
" colorscheme onenord
colorscheme gruvbox-baby

View File

@ -21,6 +21,7 @@ export PATH=/home/clint/.scripts/:$PATH
# default programs # default programs
export TERMINAL=alacritty export TERMINAL=alacritty
export BROWSER=firefox export BROWSER=firefox
export EDITOR=nvim
# add some common key bindings # add some common key bindings
bindkey "^[[H" beginning-of-line bindkey "^[[H" beginning-of-line