Compare commits
6 commits
81858b8ad1
...
8a3415da6b
Author | SHA1 | Date | |
---|---|---|---|
8a3415da6b | |||
914501fbef | |||
76cdb1fa83 | |||
aba5bfd4fb | |||
0b181d4121 | |||
532ba44b2d |
8 changed files with 25 additions and 16 deletions
|
@ -9,6 +9,7 @@ alias aliases='$EDITOR ~/.config/aliasrc && source ~/.config/aliasrc'
|
|||
|
||||
alias bfg='java -jar ~/tools/bfg-1.13.0.jar'
|
||||
|
||||
alias clip='xclip -selection clipboard'
|
||||
alias cp='cp -iv'
|
||||
|
||||
alias df='df -h'
|
||||
|
@ -25,6 +26,8 @@ alias grep-highlight='grep -e "^" -e'
|
|||
|
||||
alias hist-grep='history 0 | grep '
|
||||
|
||||
alias ip='ip -c'
|
||||
|
||||
alias j='jump'
|
||||
|
||||
alias less='less -FS'
|
||||
|
|
|
@ -2,18 +2,20 @@
|
|||
|
||||
host_name=$(cat /proc/sys/kernel/hostname)
|
||||
if [[ $host_name == "portalo" ]]; then
|
||||
bspc monitor HDMI-1 -n primary
|
||||
bspc monitor DVI-D-1 -n secondary
|
||||
primary="HDMI-A-0"
|
||||
secondary="DVI-D-0"
|
||||
|
||||
bspc monitor primary -d web terminal 3 4 5 6 game
|
||||
bspc monitor secondary -d side-view voip messenger
|
||||
bspc query -M --names
|
||||
|
||||
sleep 0.5
|
||||
bspc monitor $primary -d web terminal 3 4 5 6 game
|
||||
bspc monitor $secondary -d side-view voip messenger
|
||||
|
||||
bspc wm -O primary secondary
|
||||
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
|
||||
bspc monitor "eDP-1" -d web terminal 3 4 5 6 7 8 9 10
|
||||
else
|
||||
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 10
|
||||
fi
|
||||
|
|
|
@ -38,11 +38,11 @@ conky.config = {
|
|||
draw_shades = false,
|
||||
use_xft = true,
|
||||
font = 'Droid Sans:size=10',
|
||||
gap_x = 730,
|
||||
gap_x = 1080,
|
||||
gap_y = 30,
|
||||
minimum_height = 0,
|
||||
minimum_width = 1100,
|
||||
maximum_width = 1100,
|
||||
minimum_width = 400,
|
||||
maximum_width = 400,
|
||||
net_avg_samples = 2,
|
||||
no_buffers = true,
|
||||
double_buffer = true,
|
||||
|
|
|
@ -5,6 +5,8 @@ source "$XDG_CONFIG_HOME/locale.conf"
|
|||
|
||||
export CM_LAUNCHER='rofi'
|
||||
|
||||
export DRONE_SERVER='https://ci.serguzim.me'
|
||||
|
||||
export EDITOR='/usr/bin/vim'
|
||||
|
||||
export GOPATH="$XDG_DATA_HOME/go"
|
||||
|
|
|
@ -59,12 +59,12 @@
|
|||
[bar/portalo-primary]
|
||||
inherit = bar/portalo-base
|
||||
|
||||
monitor = HDMI-1
|
||||
monitor = HDMI-A-0
|
||||
|
||||
[bar/portalo-secondary]
|
||||
inherit = bar/portalo-base
|
||||
|
||||
monitor = DVI-D-1
|
||||
monitor = DVI-D-0
|
||||
tray-position = none
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ c.tabs.show = 'never'
|
|||
c.statusbar.show = 'never'
|
||||
c.auto_save.session = False
|
||||
|
||||
c.url.start_pages = ['https://rustplatz.live/']
|
||||
c.url.start_pages = ['https://twitch.tv/']
|
||||
|
||||
config.bind('<Ctrl-Tab>', 'tab-next')
|
||||
config.bind('<Ctrl-Shift-Tab>', 'tab-prev')
|
||||
|
|
|
@ -3,6 +3,7 @@ config.load_autoconfig()
|
|||
c.auto_save.session = True
|
||||
|
||||
#c.content.proxy = "socks://localhost:9050/"
|
||||
c.content.headers.accept_language = "en-IE,en;q=0.9"
|
||||
|
||||
c.downloads.position = 'bottom'
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ fi
|
|||
|
||||
_autostart_on_launch()
|
||||
{
|
||||
xrandr --output DVI-D-1 --left-of HDMI-1
|
||||
xrandr --output HDMI-1 --mode 2560x1440 --refresh 144
|
||||
xrandr --output DVI-D-0 --left-of HDMI-A-0
|
||||
xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
|
||||
|
||||
dunst &
|
||||
ckb-next --background &
|
||||
|
@ -43,7 +43,8 @@ _autostart_on_launch()
|
|||
#actkbd --grab --config ~/.config/actkbd/actkbd.conf --device /dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd &
|
||||
|
||||
/usr/lib/kdeconnectd &
|
||||
transmission-gtk --minimized &
|
||||
#transmission-gtk --minimized &
|
||||
qbittorrent &
|
||||
#steam-runtime -silent -tcp &
|
||||
flatpak run com.valvesoftware.Steam -silent &
|
||||
qutebrowser &
|
||||
|
|
Loading…
Reference in a new issue