diff --git a/README.md b/README.md index fa1bd62..110ddd4 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ My usage is mostly terminal-based, via Crostini on Chromebook, WSL2 on Windows, Graphical sections are Linux-only, and use: * sway / swaync / waybar -* foot +* WezTerm * Firefox On MacOS, use: -* Alacritty +* WezTerm * Rectangle ## Letting me own your machine @@ -112,11 +112,10 @@ TODO: Automate these steps. - Depending on the machine, you may need `pavucontrol` in order to unmute your audio output via GUI. \*\* Alternatively, find the name of the desired output via `pacmd list-sinks` then run `pacmd set-default-sink $SINK_NAME` and make sure to unmute via `pacmd set-sink-mute [name] 0` - If running multiple monitors, need to configure Wacom tablet to only use a specific monitor: - ```sh - xsetwacom --list | grep stylus # get id, e.g. "21" - xrandr --listactivemonitors # get id, e.g. DP-2 - - xsetwacom --set "21" MapToOutput DP-2 + ``` + input "type:tablet_tool" { + map_to_output DP-1 + } ``` - For High DPI displays, create a `~/.Xresources.local` file with the proper `Xft.dpi` (see `.Xresources` for example) - To mount SMB shares on boot, add something like the following to `/etc/fstab`: diff --git a/stowed-files/Code/.config/Code/User/settings.json b/stowed-files/Code/.config/Code/User/settings.json index dc59a04..5306f83 100644 --- a/stowed-files/Code/.config/Code/User/settings.json +++ b/stowed-files/Code/.config/Code/User/settings.json @@ -33,5 +33,6 @@ ], "workbench.preferredLightColorTheme": "Visual Studio Dark", "editor.formatOnSave": true, - "editor.formatOnSaveMode": "modificationsIfAvailable" + "editor.formatOnSaveMode": "modificationsIfAvailable", + "github.copilot.preferredAccount": "fortes-codaio" } diff --git a/stowed-files/sway/.config/sway/config b/stowed-files/sway/.config/sway/config index b577061..119a758 100644 --- a/stowed-files/sway/.config/sway/config +++ b/stowed-files/sway/.config/sway/config @@ -10,7 +10,7 @@ set $down j set $up k set $right l # Your preferred terminal emulator -set $term foot +set $term wezterm set $browser firefox # Your preferred application launcher # Note: pass the final command to swaymsg so that the resulting window can be opened diff --git a/stowed-files/wezterm/.config/wezterm/wezterm.lua b/stowed-files/wezterm/.config/wezterm/wezterm.lua index 04b6f07..aa97ef8 100644 --- a/stowed-files/wezterm/.config/wezterm/wezterm.lua +++ b/stowed-files/wezterm/.config/wezterm/wezterm.lua @@ -14,6 +14,13 @@ config.hide_tab_bar_if_only_one_tab = true config.color_scheme = 'Builtin Dark' +config.window_padding = { + left = 4, + right = 4, + top = 4, + bottom = 4, +} + -- Toggle colorscheme with Ctrl+Shift+L wezterm.on('toggle-color-scheme', function(window, pane) local overrides = window:get_config_overrides() or {}