Add better laptop configs

This commit is contained in:
Tobias Reisinger 2021-04-07 12:39:01 +02:00
parent 9ca659dbe7
commit e3392c682a
5 changed files with 44 additions and 14 deletions

View file

@ -10,17 +10,21 @@ if [[ $host_name == "portalo" ]]; then
primary="HDMI-A-0"
secondary="DVI-D-0"
bspc query -M --names
bspc monitor $primary -d web terminal 3 4 5 6 game
bspc monitor $secondary -d side-view voip messenger
sleep 0.1
bspc wm -O $primary $secondary
elif [[ $host_name == *"laptop"* ]]; then
bspc monitor "eDP-1" -d web terminal 3 4 5 6 7 8 9 10
primary="eDP-1"
secondary="HDMI-2"
bspc monitor $primary -d web terminal 3 4 5 6 messenger
bspc monitor $secondary -d side-view 9 10
sleep 0.1
bspc wm -O $primary $secondary
else
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 10
fi

View file

@ -11,9 +11,10 @@ export EDITOR='/usr/bin/vim'
export GOPATH="$XDG_DATA_HOME/go"
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
export KUBECONFIG="$HOME/.kube/config"
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"

View file

@ -68,16 +68,25 @@
tray-position = none
[bar/laptop-primary]
[bar/laptop-base]
inherit = bar/base
monitor = eDP-1
modules-left = bspwm
modules-center =
modules-center = mpd
modules-right = pulseaudio battery xbacklight memory cpu temperature wlan eth check-arch-updates date powermenu
eth-interface = enp2s0f1
wlan-interface = wlp3s0
[bar/laptop-primary]
inherit = bar/laptop-base
monitor = eDP-1
[bar/laptop-secondary]
inherit = bar/laptop-base
monitor = HDMI-2
tray-position = none
; vim: ft=dosini

View file

@ -12,6 +12,7 @@ if [[ $host_name == "portalo" ]]; then
polybar portalo-secondary &
elif [[ $host_name == *"laptop"* ]]; then
polybar laptop-primary &
polybar laptop-secondary &
else
polybar laptop-primary & # TODO
polybar base &
fi

View file

@ -1,4 +1,4 @@
source $HOME/.config/environment
. $HOME/.config/environment
xcompmgr -n -f -D3 &
numlockx on
@ -6,7 +6,6 @@ numlockx on
setxkbmap de
setxkbmap -option caps:none
if [ -x "$(command -v gpgconf)" ]
then
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
@ -14,11 +13,20 @@ then
gpg2 --card-status > /dev/null
fi
_autostart_on_launch()
_autostart_portalo()
{
xrandr --output DVI-D-0 --left-of HDMI-A-0
xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
}
_autostart_laptop()
{
xrandr --output eDP-1 --auto
xrandr --output HDMI-2 --left-of eDP-1 --auto
}
_autostart_defaults()
{
dunst &
ckb-next --background &
parcellite &
@ -67,6 +75,13 @@ _autostart_on_launch()
mopidy &
}
_autostart_on_launch &
host_name=$(cat /proc/sys/kernel/hostname)
if [[ $host_name == "portalo" ]]; then
_autostart_portalo &
elif [[ $host_name == *"laptop"* ]]; then
_autostart_laptop &
fi
_autostart_defaults &
# vim: ft=sh