xsel, locker update, font config & polybar multi-monitor

This commit is contained in:
Tristaan
2018-01-20 15:02:36 +01:00
parent c1260453a1
commit 03870463e6
8 changed files with 17 additions and 9 deletions

View File

@@ -55,19 +55,19 @@ draw_bold_text_with_bright_colors: true
font: font:
# The normal (roman) font face to use. # The normal (roman) font face to use.
normal: 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 can be specified to pick a specific face.
style: Regular style: Regular
# The bold font face # The bold font face
bold: 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 can be specified to pick a specific face.
style: Bold style: Bold
# The italic font face # The italic font face
italic: 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 can be specified to pick a specific face.
# style: Italic # style: Italic

View File

@@ -12,7 +12,7 @@ show_program_path=1
highlight_base_name=0 highlight_base_name=0
highlight_megabytes=1 highlight_megabytes=1
highlight_threads=1 highlight_threads=1
tree_view=1 tree_view=0
header_margin=1 header_margin=1
detailed_cpu_time=0 detailed_cpu_time=0
cpu_count_from_zero=0 cpu_count_from_zero=0

View File

@@ -34,7 +34,7 @@ bright_white = '0xd7d7d7'
[bar/top] [bar/top]
;monitor = ${env:MONITOR:HDMI-1} monitor = ${env:MONITOR}
width = 100% width = 100%
height = 26 height = 26
;offset-x = 1% ;offset-x = 1%

View File

@@ -23,7 +23,7 @@ exec xmodmap ~/.i3/custom.map
# US brackets on slovene special characters # US brackets on slovene special characters
#exec xmodmap ~/.i3/custom.map #exec xmodmap ~/.i3/custom.map
font pango: FontAwesome, xos4 Terminess Powerline 12 font pango: FontAwesome, xos4 Terminus 12
#--APPEARANCE--# #--APPEARANCE--#

View File

@@ -1,7 +1,8 @@
#!/bin/sh #!/bin/sh
ARGS=( ARGS=(
"--clock" "-s" "--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" "--insidevercolor=35d75588"
"--insidewrongcolor=d7355588" "--insidewrongcolor=d7355588"
"--insidecolor=50505000" "--insidecolor=50505000"

View File

@@ -6,7 +6,13 @@ killall -q polybar
# Wait until the processes have been shut down # Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done 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..." echo "Bars launched..."

1
.zshrc
View File

@@ -2,6 +2,7 @@
# Path to your oh-my-zsh installation. # Path to your oh-my-zsh installation.
export ZSH=/home/tristan/.oh-my-zsh export ZSH=/home/tristan/.oh-my-zsh
export PATH=$HOME/.gem/ruby/2.4.0/bin/:$PATH 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" # 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. # it'll load a random theme each time that oh-my-zsh is loaded.

View File

@@ -40,7 +40,7 @@ do
fi fi
if [ $var == "-ii" ]; then 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 symlink_dotfiles
fi fi