From cb0407408f6db3143fe9723e3d15308487831b84 Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Thu, 18 Feb 2021 13:03:26 +0000 Subject: [PATCH] Tweaks for monitor setup, clean up ST3 plugins. --- toronto/.config/i3/display.sh | 4 ++-- toronto/.config/picom/picom.conf | 3 +++ .../Packages/User/Package Control.sublime-settings | 14 ++------------ .../Packages/User/Preferences.sublime-settings | 9 +++++---- toronto/.config/sway/config | 7 ++++--- toronto/.zshrc | 2 +- 6 files changed, 17 insertions(+), 22 deletions(-) diff --git a/toronto/.config/i3/display.sh b/toronto/.config/i3/display.sh index 294d21f..e3459f2 100755 --- a/toronto/.config/i3/display.sh +++ b/toronto/.config/i3/display.sh @@ -30,8 +30,8 @@ fi if [ `xrandr | grep DP-3 | grep -c ' connected '` -eq 1 ]; then EXTERNAL_OUTPUT="DP-3" fi -if [ `xrandr | grep DP2-1 | grep -c ' connected '` -eq 1 ]; then - EXTERNAL_OUTPUT="DP2-1" +if [ `xrandr | grep DP2-3 | grep -c ' connected '` -eq 1 ]; then + EXTERNAL_OUTPUT="DP2-3" fi # xrander will run and turn on the display you want, if you have an option for 3 displays, this will need some modifications diff --git a/toronto/.config/picom/picom.conf b/toronto/.config/picom/picom.conf index 957c7fc..d12ecba 100644 --- a/toronto/.config/picom/picom.conf +++ b/toronto/.config/picom/picom.conf @@ -152,6 +152,9 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # opacity-rule = [ "80:class_g = 'URxvt'" ]; # # opacity-rule = [] +opacity-rule = [ + "100:class_g = 'jetbrains-goland'" +] ################################# diff --git a/toronto/.config/sublime-text-3/Packages/User/Package Control.sublime-settings b/toronto/.config/sublime-text-3/Packages/User/Package Control.sublime-settings index 259959a..ff8b601 100644 --- a/toronto/.config/sublime-text-3/Packages/User/Package Control.sublime-settings +++ b/toronto/.config/sublime-text-3/Packages/User/Package Control.sublime-settings @@ -7,33 +7,23 @@ "installed_packages": [ "Bats", - "Dartlight", "Dockerfile Syntax Highlighting", "Emmet", - "Emoji", "GitGutter", - "Gitmoji", - "GoDebug", - "Gofmt", - "Golang Build", + "HexViewer", "JSX", "LSP", "LSP-bash", "LSP-typescript", "LSP-yaml", "Markdown Extended", - "Markdown Table Formatter", - "orgmode", "Package Control", "Rust Enhanced", "SideBarEnhancements", "SublimeCodeIntel", - "Terminus", "Terraform", "Theme - Monokai Pro", "TOML", - "TypeScript", - "TypeScript Syntax", - "Vue Syntax Highlight" + "TypeScript" ] } diff --git a/toronto/.config/sublime-text-3/Packages/User/Preferences.sublime-settings b/toronto/.config/sublime-text-3/Packages/User/Preferences.sublime-settings index 9f2d3ff..d6bb846 100644 --- a/toronto/.config/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/toronto/.config/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -2,16 +2,17 @@ "auto_complete_delay": 20, "color_scheme": "Monokai Pro (Filter Spectrum).sublime-color-scheme", "font_face": "IBM Plex Mono", - "font_size": 13, + "font_size": 12, "ignored_packages": [ - "LSP-bash", - "Rust", - "Vintage" + "Vintage", ], + "monokai_pro_file_icons": true, "monokai_pro_highlight_open_folders": true, "monokai_pro_minimal": true, + "monokai_pro_sidebar_headings": true, "monokai_pro_style_title_bar": true, + "monokai_pro_ui_font_face": "IBM Plex Mono", "rulers": [ 80 diff --git a/toronto/.config/sway/config b/toronto/.config/sway/config index fa6d6f0..6982ee5 100644 --- a/toronto/.config/sway/config +++ b/toronto/.config/sway/config @@ -5,9 +5,10 @@ # Read `man 5 sway` for a complete reference. ## Outputs -output eDP-1 pos 1920 0 res 1920x1080 +#output eDP-1 pos 1920 0 res 1920x1080 +output eDP-1 disable # output DP-5 transform 90 anticlockwise res 2560x1440@165Hz -#output DP-4 res 2560x1440@165Hz +output DP-6 res 2560x1440@165Hz ### Variables # @@ -64,7 +65,7 @@ output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill # You can get the names of your inputs by running: swaymsg -t get_inputs # Read `man 5 sway-input` for more information about this section. -input "1133:49970:Logitech_Gaming_Mouse_G502" { +input "1133:16511:Logitech_G502" { pointer_accel -0.5 accel_profile flat } diff --git a/toronto/.zshrc b/toronto/.zshrc index e7e7813..7148ad8 100644 --- a/toronto/.zshrc +++ b/toronto/.zshrc @@ -13,7 +13,7 @@ export ZSH="/home/gsimmer/.oh-my-zsh" # Uncomment the following line to enable command auto-correction. # ENABLE_CORRECTION="true" -plugins=(git fzf) +plugins=(git fzf zsh-autosuggestions) source $ZSH/oh-my-zsh.sh