From 31f29595c69d6da113025b734e4d580533ec8144 Mon Sep 17 00:00:00 2001 From: David Luevano <55825613+luevano@users.noreply.github.com> Date: Wed, 12 Feb 2020 04:02:40 -0700 Subject: Debug complete, nvidia driver bad --- .config/i3/config | 8 ++++--- .config/i3blocks/config | 62 +++++++++++++++++++++++++------------------------ .profile | 2 +- .xinitrc | 2 +- .xprofile | 10 ++++---- 5 files changed, 44 insertions(+), 40 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 8d7b20a..9561bea 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -11,6 +11,8 @@ gaps outer 5 set $mod Mod4 font pango:monospace 10 ## i3config variables. +set $mon1 "HDMI-2" +set $mon2 "DP-2" set $term --no-startup-id $TERMINAL set $fmgr --no-startup-id $FILE set $ibwsr --no-startup-id $BROWSER @@ -60,8 +62,8 @@ client.background $c15 ##---i3bar configuration---## ## Primary monitor. bar { - output primary - tray_output primary + output $mon1 + tray_output $mon1 position top status_command $STATUSBAR colors{ @@ -79,7 +81,7 @@ bar { } ## Second monitor. bar { - output DP-0 + output $mon2 tray_output none position top status_command $STATUSBAR diff --git a/.config/i3blocks/config b/.config/i3blocks/config index 9cacae2..b839f7a 100644 --- a/.config/i3blocks/config +++ b/.config/i3blocks/config @@ -1,4 +1,6 @@ -# i3blocks config +# +# ~/.config/i3blocks/config +# # Global properties command=$HOME/.local/bin/blocks/$BLOCK_NAME @@ -6,50 +8,50 @@ separator=false separator_block_width=5 markup=pango -[gpu] -label= -interval=10 -#min_width=GPU 100% 100% 100% 100% -#T_WARN=70 -#T_CRIT=90 +# [gpu] +# label= +# interval=10 +# min_width=GPU 100% 100% 100% 100% +# T_WARN=70 +# T_CRIT=90 [cpu] label= interval=10 -#min_width=CPU: 100.00% -#T_WARN=50 -#T_CRIT=80 -#DECIMALS=2 +# min_width=CPU: 100.00% +# T_WARN=50 +# T_CRIT=80 +# DECIMALS=2 [memory] label= -#instance=swap +#i nstance=swap interval=30 [volume] interval=once signal=1 -#MIXER=[determined automatically] -#SCONTROL=[determined automatically] -##exposed format variables: ${SYMB}, ${VOL}, ${INDEX}, ${NAME} -#LONG_FORMAT="${SYMB} ${VOL}% [${INDEX}:${NAME}]" -#SHORT_FORMAT="${SYMB} ${VOL}% [${INDEX}]" -#AUDIO_HIGH_SYMBOL=' ' -#AUDIO_MED_THRESH=50 -#AUDIO_MED_SYMBOL=' ' -#AUDIO_LOW_THRESH=0 -#AUDIO_LOW_SYMBOL=' ' -#AUDIO_DELTA=5 -#DEFAULT_COLOR="#ffffff" -#MUTED_COLOR="#a0a0a0" -#USE_ALSA_NAME=0 -#USE_DESCRIPTION=0 -## SUBSCRIBE=1 requires interval=persist and always uses LONG_FORMAT -#SUBSCRIBE=0 +# MIXER=[determined automatically] +# SCONTROL=[determined automatically] +## Exposed format variables: ${SYMB}, ${VOL}, ${INDEX}, ${NAME} +# LONG_FORMAT="${SYMB} ${VOL}% [${INDEX}:${NAME}]" +# SHORT_FORMAT="${SYMB} ${VOL}% [${INDEX}]" +AUDIO_HIGH_SYMBOL=  +# AUDIO_MED_THRESH=50 +AUDIO_MED_SYMBOL=  +# AUDIO_LOW_THRESH=0 +AUDIO_LOW_SYMBOL=  +# AUDIO_DELTA=5 +# DEFAULT_COLOR="#ffffff" +# MUTED_COLOR="#a0a0a0" +# USE_ALSA_NAME=0 +# USE_DESCRIPTION=0 +# SUBSCRIBE=1 requires interval=persist and always uses LONG_FORMAT +# SUBSCRIBE=0 [calendar] label= -DATEFMT=+%m/%b/%y %H:%M +DATEFMT=+%d/%b/%y %H:%M # SHORTFMT=+%H:%M:%S HEIGHT=180 WIDTH=220 diff --git a/.profile b/.profile index d98018a..4a377bd 100644 --- a/.profile +++ b/.profile @@ -3,7 +3,7 @@ # ##--Environment variables--## ## Modified env vars. -# export PATH="$PATH:$(du -L "$HOME/.local/bin/" | cut -f2 | tr '\n' ';' | sed 's/:*$//')" +export PATH="$PATH:$(du -L "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" ## Default program. export EDITOR="nvim" diff --git a/.xinitrc b/.xinitrc index 0ddd63d..04c809a 100644 --- a/.xinitrc +++ b/.xinitrc @@ -6,4 +6,4 @@ # but since display managers use ~/.xprofile instead, # .xprofile is sourced to be compatible with both. -# [[ -f ~/.xprofile ]] && . ~/.xprofile +[[ -f ~/.xprofile ]] && . ~/.xprofile diff --git a/.xprofile b/.xprofile index 4aaa84c..c805b0d 100644 --- a/.xprofile +++ b/.xprofile @@ -5,8 +5,8 @@ # This is run when a display manager logs in. # Used as source for ~/.xinitrc. -# picom & # Transparency and stuff. -# dunst & # Notifications. -# nm-applet & # Network manager. -# udiskie & # Drive mounting. -# flameshot & # Screenshots. +picom & # Transparency and stuff. +dunst & # Notifications. +nm-applet & # Network manager. +udiskie & # Drive mounting. +flameshot & # Screenshots. -- cgit v1.2.3-54-g00ecf