From 30970086afb9e8a3eb83bce0243def2abb7e2ead Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sun, 4 Jul 2021 22:43:39 -0300 Subject: [PATCH] changes due to migration from ubuntu to arch --- .config/qtile/config.py | 4 ++-- .zshrc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index b5dd031..6b916dc 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -239,7 +239,7 @@ def main_bar(): [ widget.TextBox(text="⟳", fontsize=18), widget.CheckUpdates( - distro="Ubuntu", display_format="{updates} Updates" + distro="Arch", display_format="{updates} Updates" ), ], [ @@ -328,7 +328,7 @@ floating_layout = layout.Floating( Match(wm_class="maketag"), # gitk Match(wm_class="ssh-askpass"), # ssh-askpass Match(title="branchdialog"), # gitk - Match(title="pinentry"), # GPG key password entry + Match(title="pinentry-gtk-2"), # GPG key password entry Match(wm_class="gnome-calculator"), # Calculator Match(wm_class="pavucontrol"), # Audio mixer Match(wm_class="gnome-calendar"), # Calendar diff --git a/.zshrc b/.zshrc index af9657a..7a3aa5b 100644 --- a/.zshrc +++ b/.zshrc @@ -43,8 +43,8 @@ alias config="git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME" alias python="python3" alias pip="pip3" -# Alias to batcat instead of cat -alias cat="batcat --paging=never --style=header,grid" +# Alias to bat instead of cat +alias cat="bat --paging=never --style=header,grid" # Alias to exa instead of ls alias ls="exa --color=always --group-directories-first"