diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index a26c6c1..0a80b67 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -55,19 +55,19 @@ draw_bold_text_with_bright_colors: true font: # The normal (roman) font face to use. normal: - family: xos4 Terminus # should be "Menlo" or something on macOS. + family: "xos4 Terminus" # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. style: Regular # The bold font face bold: - family: xos4 Terminus # should be "Menlo" or something on macOS. + family: "xos4 Terminus" # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. style: Bold # The italic font face italic: - family: xos4 Terminus # should be "Menlo" or something on macOS. + family: "xos4 Terminus" # should be "Menlo" or something on macOS. # Style can be specified to pick a specific face. # style: Italic diff --git a/.config/htop/htoprc b/.config/htop/htoprc index 7ee5858..377ba67 100755 --- a/.config/htop/htoprc +++ b/.config/htop/htoprc @@ -12,7 +12,7 @@ show_program_path=1 highlight_base_name=0 highlight_megabytes=1 highlight_threads=1 -tree_view=1 +tree_view=0 header_margin=1 detailed_cpu_time=0 cpu_count_from_zero=0 diff --git a/.config/polybar/config b/.config/polybar/config index a660376..84078e8 100644 --- a/.config/polybar/config +++ b/.config/polybar/config @@ -34,7 +34,7 @@ bright_white = '0xd7d7d7' [bar/top] -;monitor = ${env:MONITOR:HDMI-1} +monitor = ${env:MONITOR} width = 100% height = 26 ;offset-x = 1% diff --git a/.i3/config b/.i3/config index 4093710..2a0a7be 100644 --- a/.i3/config +++ b/.i3/config @@ -23,7 +23,7 @@ exec xmodmap ~/.i3/custom.map # US brackets on slovene special characters #exec xmodmap ~/.i3/custom.map -font pango: FontAwesome, xos4 Terminess Powerline 12 +font pango: FontAwesome, xos4 Terminus 12 #--APPEARANCE--# diff --git a/.i3/scripts/locker.sh b/.i3/scripts/locker.sh index 248102d..704c290 100755 --- a/.i3/scripts/locker.sh +++ b/.i3/scripts/locker.sh @@ -1,7 +1,8 @@ #!/bin/sh ARGS=( "--clock" "-s" - "-i${HOME}/Pictures/bg_1440p/Linux-Wallpapers-19-2560-x-1920.png" +# "-i${HOME}/Pictures/bg_1440p/Linux-Wallpapers-19-2560-x-1920.png" + "-i${HOME}/Pictures/backgrounds/0c7e1f_5775038.jpg" "--insidevercolor=35d75588" "--insidewrongcolor=d7355588" "--insidecolor=50505000" diff --git a/.i3/scripts/polybar_launch.sh b/.i3/scripts/polybar_launch.sh index ec93ea8..7000916 100755 --- a/.i3/scripts/polybar_launch.sh +++ b/.i3/scripts/polybar_launch.sh @@ -6,7 +6,13 @@ killall -q polybar # Wait until the processes have been shut down while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done -polybar top & +if type "xrandr"; then + for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do + MONITOR=$m polybar --reload top & + done +else + polybar --reload top & +fi echo "Bars launched..." diff --git a/.zshrc b/.zshrc index de7edf0..1faff8d 100755 --- a/.zshrc +++ b/.zshrc @@ -2,6 +2,7 @@ # Path to your oh-my-zsh installation. export ZSH=/home/tristan/.oh-my-zsh export PATH=$HOME/.gem/ruby/2.4.0/bin/:$PATH + export PATH=$HOME/.gem/ruby/2.5.0/bin/:$PATH # Set name of the theme to load. Optionally, if you set this to "random" # it'll load a random theme each time that oh-my-zsh is loaded. diff --git a/install.sh b/install.sh index 8b10f1c..497ff0b 100755 --- a/install.sh +++ b/install.sh @@ -40,7 +40,7 @@ do fi if [ $var == "-ii" ]; then - yaourt -S zsh zsh-syntax-highlighting i3blocks neovim i3-wm i3lock-color-git ctags alacritty-scrollback-git polybar mplayer udiskie nitrogen compton dunst megasync parcellite rofi terminus terminess-powerline-font-git ttf-font-awesome-4 openssh arc-gtk-theme lxappearance numix-circle-arc-icons-git pulsemixer + yaourt -S zsh zsh-syntax-highlighting i3blocks neovim i3-wm i3lock-color-git ctags alacritty-scrollback-git polybar mplayer udiskie nitrogen compton dunst megasync parcellite rofi terminus terminess-powerline-font-git ttf-font-awesome-4 openssh arc-gtk-theme lxappearance numix-circle-arc-icons-git pulsemixer xsel symlink_dotfiles fi