i3, .xinitrc: Polish

Also update Concesssion
This commit is contained in:
Salt 2018-10-20 14:09:54 -05:00
parent ba5269053a
commit 833636c0d2
6 changed files with 45 additions and 4 deletions

@ -1 +1 @@
Subproject commit 333633f47bc7083f6bd7851f66a854f5f257a4f5
Subproject commit e01812c85c8bad26980ac19e4492b237842fcc2e

View File

@ -4,7 +4,7 @@
#
###################
# DO NOT RUN PROGRAMS HERE
# DO NOT START DAEMONS HERE
###################
# This script leverages Concession for startup scripts
# gitlab.com/rehashedsalt/concession
@ -83,8 +83,8 @@ gaps outer 0
# Apply colors to i3
# <colorclass> <border> <backgrd> <text> <indicator> <child_border>
client.focused $blue2 $blue2 $bg $bgm $blue2
client.focused_inactive $blue $blue $bg $bgm $bg
client.unfocused $bgm $bg $blue $bg $bg
client.focused_inactive $blue $blue $bg $bgm $bgm
client.unfocused $bgm $bg $blue $bg $bgm
client.urgent $yellow2 $bg $yellow2 $yellow $bg
client.placeholder $purple2 $bg $purple2 $purple $bg
client.background $bg
@ -124,6 +124,7 @@ bindsym $mod+p exec --no-startup-id "~/.local/bin/tubetop2"
bindsym $mod+$shift+p exec --no-startup-id "pkill xwinwrap"
# Miscellaneous non-movement hotkeys
bindsym $ctl+$mod+l exec --no-startup-id "~/.local/bin/i3lock-custom"
bindsym $mod+$shift+c reload
bindsym $mod+$shift+r restart
#bindsym $mod+$shift+e exit

View File

@ -0,0 +1,4 @@
[xin_-1]
file=/home/salt/Pictures/Wallpapers/w/1428350489332.png
mode=0
bgcolor=#282828

View File

@ -0,0 +1,12 @@
[geometry]
posx=964
posy=8
sizex=944
sizey=1026
[nitrogen]
view=icon
recurse=true
sort=alpha
icon_caps=false
dirs=/home/salt/Pictures/Wallpapers;

View File

@ -24,6 +24,8 @@
! Color declarations
*background: G_base03
*bg2: G_base02
*bg3: G_base01
*foreground: G_base3
*cursorColor: G_base1
*pointerColorBackground: G_base01

22
.xinitrc Executable file
View File

@ -0,0 +1,22 @@
#!/bin/sh
#
# Salt's .xinitrc
# Copyright (C) 2018 salt <salt@lap-th-e560-0>
#
# Distributed under terms of the MIT license.
#
# Set up our session target
which i3 > /dev/null 2>&1 && export STARTUP="i3"
which bspwm > /dev/null 2>&1 && export STARTUP="bspwm"
[ -x "$HOME/.concession/conspiracy" ] && export STARTUP="$HOME/.concession/conspiracy"
# Execute Xsession stuff
[ -r /etc/X11/Xsession ] && . /etc/X11/Xsession
# Do the do
[ -z "${STARTUP+x}" ] || exec "$STARTUP"
# Or maybe just die, I guess
echo "Failed to start Concession!" >&2
exit 1