2 Commits 633d8732d3 ... 5a34b7564e

Author SHA1 Message Date
  Marius Schwarz 5a34b7564e switched terminal to kitty 1 year ago
  Marius Schwarz 5ac31a05b1 fixed TERM for kitty 1 year ago
3 changed files with 5 additions and 3 deletions
  1. 2 1
      .config/i3/config
  2. 2 1
      .zshrc
  3. 1 1
      install.sh

+ 2 - 1
.config/i3/config

@@ -23,7 +23,8 @@ set $win Mod4
 set $gaps 10
 
 # Terminal
-set $terminal "alacritty --command /usr/bin/zsh"
+#set $terminal "alacritty --command /usr/bin/zsh"
+set $terminal "kitty /usr/bin/zsh"
 
 # File Browser
 set $file_browser "alacritty --class vifm --command /usr/bin/zsh -ic vifm"

+ 2 - 1
.zshrc

@@ -60,8 +60,9 @@ cat ~/.cache/wal/sequences
 
 # export important global variables
 export SHELL=/usr/bin/zsh
+export TERM=xterm-256color
 export EDITOR=nvim
-export BROWSER=/usr/bin/librewolf
+export BROWSER=/usr/bin/firefox
 export HISTFILE=$HOME/.zsh_history
 # dotfiles
 export DOTS=$HOME/documents/dots

+ 1 - 1
install.sh

@@ -7,7 +7,7 @@ read yesno
 if [[ "$yesno" == "y" ]]; then
     echo "[*] Installing most popular tools"
     # most important tools that are _always_ needed
-    sudo pacman -Sy fzf fd neovim ripgrep nmap hexyl ctags git podman ueberzug duf exa i3blocks udiskie alacritty rofi firefox python-pip vifm zathura zathura-pdf-mupdf sxiv feh xclip flameshot manjaro-pipewire pavucontrol rofimoji noto-fonts noto-fonts-emoji noto-fonts-extra light redshift zip unzip
+    sudo pacman -Sy fzf fd neovim ripgrep nmap hexyl ctags git podman ueberzug duf exa i3blocks udiskie alacritty rofi firefox python-pip vifm zathura zathura-pdf-mupdf sxiv feh xclip flameshot manjaro-pipewire pavucontrol rofimoji noto-fonts noto-fonts-emoji noto-fonts-extra light redshift zip unzip kitty
 fi