diff --git a/leftwm/.config/leftwm/autostart.sh b/leftwm/.config/leftwm/autostart.sh index 41376a7..14e51ce 100755 --- a/leftwm/.config/leftwm/autostart.sh +++ b/leftwm/.config/leftwm/autostart.sh @@ -14,10 +14,10 @@ fi setxkbmap se & # Display settings -$HOME/.screenlayout/layout.sh & +sh $HOME/.screenlayout/layout.sh & # Compositor -$HOME/.config/picom/launch & +sh $HOME/.config/picom/launch & # Background nitrogen --restore & diff --git a/leftwm/.config/leftwm/config.ron b/leftwm/.config/leftwm/config.ron index 0b1eb72..7706d23 100644 --- a/leftwm/.config/leftwm/config.ron +++ b/leftwm/.config/leftwm/config.ron @@ -4,18 +4,18 @@ mousekey: "Mod4", workspaces: [ ( - output: "DP-4", + output: "eDP-1", y: 0, - x: 0, + x: 2560, height: 1080, width: 1920, ), ( - output: "HDMI-0", + output: "HDMI-1", y: 0, - x: 1920, - height: 1080, - width: 1920, + x: 0, + height: 1440, + width: 2560, ) ], tags: [ diff --git a/nvchad/.config/nvim/lua/custom/chadrc.lua b/nvchad/.config/nvim/lua/custom/chadrc.lua index 1160095..871dfe3 100644 --- a/nvchad/.config/nvim/lua/custom/chadrc.lua +++ b/nvchad/.config/nvim/lua/custom/chadrc.lua @@ -5,8 +5,8 @@ local M = {} local highlights = require "custom.highlights" M.ui = { - theme = "tomorrow_night", - theme_toggle = { "tomorrow_night", "gruvbox_light" }, + theme = "gruvbox", + theme_toggle = { "gruvbox", "gruvbox_light" }, hl_override = highlights.override, hl_add = highlights.add, diff --git a/oh-my-zsh/.oh-my-zsh/aliases.sh b/oh-my-zsh/.oh-my-zsh/aliases.sh index c07e718..090ec3a 100644 --- a/oh-my-zsh/.oh-my-zsh/aliases.sh +++ b/oh-my-zsh/.oh-my-zsh/aliases.sh @@ -35,7 +35,7 @@ cd_gitroot() { alias cr="cd_gitroot" -alias dev="cd $HOME/Projects/almtech/ingenuity/" +alias dev="cd $HOME/Projects/almtech/exa/" alias dc="docker-compose"