diff --git a/.bashrc b/.bashrc index b5f8a7b..c93de32 100644 --- a/.bashrc +++ b/.bashrc @@ -26,6 +26,7 @@ alias t='sudo timeshift --list' alias ts='~/dotfiles/scripts/snapshot.sh' alias matrix='cmatrix' alias screenshot='scrot' +alias cat='bat' # GIT alias gs="git status" diff --git a/1-install.sh b/1-install.sh index ed9456d..226a11b 100755 --- a/1-install.sh +++ b/1-install.sh @@ -18,13 +18,13 @@ echo "START INSTALLATION..." # Install required packages # ------------------------------------------------------ echo "-> Install main packages" -sudo pacman -S alacritty scrot nitrogen picom starship chromium slock neomutt neovim rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator +sudo pacman -S alacritty scrot nitrogen picom starship slock neomutt neovim rofi dunst ueberzug mpv freerdp spotifyd xfce4-power-manager python-pip thunar mousepad lxappearance papirus-icon-theme ttf-font-awesome ttf-fira-sans ttf-fira-code ttf-firacode-nerd figlet cmatrix qalculate-gtk adapta-gtk-theme terminator # ------------------------------------------------------ # Install required packages # ------------------------------------------------------ echo "-> Install AUR packages" -yay -S pywal timeshift tela-circle-icon-theme-orange +yay -S brave-bin pywal timeshift tela-circle-icon-theme-orange # ------------------------------------------------------ # Install Pip packages diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index 61a0b98..c0346ae 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ diff --git a/qtile/config.py b/qtile/config.py index efddfb3..08e131f 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -73,8 +73,8 @@ platform = int(os.popen("cat /sys/class/dmi/id/chassis_type").read()) # Set default apps # -------------------------------------------------------- -terminal = guess_terminal(terminal) -browser = "chromium" +# terminal = guess_terminal(terminal) +browser = "brave" # -------------------------------------------------------- # KEYBINDINGS @@ -262,6 +262,18 @@ widget_list = [ text='|', foreground=ColorC, ), + widget.Memory( + measure_mem='G', + format="{MemUsed:.0f}{mm} ({MemTotal:.0f}{mm})" + ), + widget.DF( + visible_on_warn=False, + format="{p} {uf}{m} ({r:.0f}%)" + ), + widget.TextBox( + text='|', + foreground=ColorC, + ), widget.Battery(), widget.TextBox( text='|', @@ -283,7 +295,7 @@ widget_list = [ ] if (platform == 3): - del widget_list[7:9] + del widget_list[10:12] # -------------------------------------------------------- # Screens