diff --git a/.config/river/init b/.config/river/init index 06595b5..1ba1c8c 100755 --- a/.config/river/init +++ b/.config/river/init @@ -11,7 +11,7 @@ # Note: the "Super" modifier is also known as Logo, GUI, Windows, Mod4, etc. # Super+Shift+Return to start an instance of foot (https://codeberg.org/dnkl/foot) -riverctl map normal Super+Shift Return spawn foot +riverctl map normal Super Return spawn wezterm # Super+Q to close the focused view riverctl map normal Super Q close @@ -37,7 +37,7 @@ riverctl map normal Super+Shift Period send-to-output next riverctl map normal Super+Shift Comma send-to-output previous # Super+Return to bump the focused view to the top of the layout stack -riverctl map normal Super Return zoom +riverctl map normal Super+Shift Return zoom # Super+H and Super+L to decrease/increase the main ratio of rivertile(1) riverctl map normal Super H send-layout-cmd rivertile "main-ratio -0.05" diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index ae59b56..350b834 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -4,9 +4,8 @@ local config = wezterm.config_builder() config.window_decorations = "RESIZE" config.enable_tab_bar = false - --- Setting the font and the colorscheme comes later - +config.font = wezterm.font("Fira Code Nerd Font") +config.font_size = 18.0 return config diff --git a/.zshrc b/.zshrc index c66d3da..e95c951 100644 --- a/.zshrc +++ b/.zshrc @@ -1 +1,4 @@ # Created by newuser for 5.9 + +export XDG_RUNTIME_DIR=/run/user/$(id -u) +eval "$(starship init zsh)" diff --git a/setup.sh b/setup.sh index 42ea382..1140ed2 100755 --- a/setup.sh +++ b/setup.sh @@ -14,9 +14,14 @@ cd $HOME/.dotfiles && stow . && cd - # Setup zsh chsh -s $(which zsh) -sudo xbps-install -y font-firacode river wezterm firefox +sudo xbps-install -y font-firacode river wezterm firefox dbus elogind sudo xbps-install -y rustup ghc openjdk21 apache-maven gradle nodejs +# Setup river +sudo ln -s /etc/sv/dbus /var/service +sudo sv up dbus + + mkdir --parents ~/projects/rust mkdir --parents ~/projects/haskell mkdir --parents ~/projects/java