From 586e8c365b98f4a5cceb07f05d59882e559a602b Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Sun, 9 Jul 2023 16:36:57 +0200 Subject: [PATCH] refactor: Tweaks to terminal & WM --- alacritty/.config/alacritty/alacritty.yml | 2 +- leftwm/.config/leftwm/config.ron | 2 +- nvim/.config/nvim/plugin/after/presence.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 367d96e..a6b9378 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -2,7 +2,7 @@ env: TERM: xterm-256color -background_opacity: 1.0 +background_opacity: 0.94 window: padding: diff --git a/leftwm/.config/leftwm/config.ron b/leftwm/.config/leftwm/config.ron index e658b61..418183d 100644 --- a/leftwm/.config/leftwm/config.ron +++ b/leftwm/.config/leftwm/config.ron @@ -72,7 +72,7 @@ (command: Execute, value: "rofi -show drun", modifier: ["modkey"], key: "d"), (command: Execute, value: "rofi -show ssh", modifier: ["modkey"], key: "s"), (command: Execute, value: "alacritty", modifier: ["modkey"], key: "Return"), - (command: Execute, value: "firefox", modifier: ["modkey"], key: "b"), // + (command: Execute, value: "xdg-open https://google.com", modifier: ["modkey"], key: "b"), // (command: Execute, value: "playerctl play-pause", modifier: ["modkey"], key: "u"), (command: CloseWindow, value: "", modifier: ["modkey", "Shift"], key: "q"), (command: SoftReload, value: "", modifier: ["modkey", "Shift"], key: "x"), diff --git a/nvim/.config/nvim/plugin/after/presence.lua b/nvim/.config/nvim/plugin/after/presence.lua index 43b6368..ca78ef6 100644 --- a/nvim/.config/nvim/plugin/after/presence.lua +++ b/nvim/.config/nvim/plugin/after/presence.lua @@ -2,7 +2,7 @@ require("presence").setup({ -- General options auto_update = true, -- Update activity based on autocmd events (if `false`, map or manually execute `:lua package.loaded.presence:update()`) neovim_image_text = "Neovim", -- Text displayed when hovered over the Neovim image - main_image = "file", -- Main image display (either "neovim" or "file") + main_image = "neovim", -- Main image display (either "neovim" or "file") client_id = "793271441293967371", -- Use your own Discord application client id (not recommended) log_level = nil, -- Log messages at or above this level (one of the following: "debug", "info", "warn", "error") debounce_timeout = 10, -- Number of seconds to debounce events (or calls to `:lua package.loaded.presence:update(, true)`)