aboutsummaryrefslogtreecommitdiffstats
path: root/i3
diff options
context:
space:
mode:
authorjason2017-04-20 16:26:26 -0600
committerjason2017-04-20 16:26:26 -0600
commitf176cf30293cf2793f83026a3587752b69b128a9 (patch)
tree32f63dd186cf934f17d312f81ac9a6e1f94dab07 /i3
parentc8cbfca2650ae3502508fa2d04cfa24c8923a851 (diff)
downloaddotfiles-f176cf30293cf2793f83026a3587752b69b128a9.tar.gz
dotfiles-f176cf30293cf2793f83026a3587752b69b128a9.zip
Update i3 configs
Diffstat (limited to 'i3')
-rw-r--r--i3/.config/i3/config6
-rw-r--r--i3/.i3status.conf59
2 files changed, 63 insertions, 2 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config
index 71f8d4e..a1eca7c 100644
--- a/i3/.config/i3/config
+++ b/i3/.config/i3/config
@@ -159,7 +159,8 @@ bar {
159 status_command i3status 159 status_command i3status
160} 160}
161 161
162exec run-once nm-applet 162# exec run-once nm-applet
163exec run-once wicd-client -t
163exec run-once clipit 164exec run-once clipit
164exec run-once xbindkeys 165exec run-once xbindkeys
165exec run-once synclient PalmDetect=1 166exec run-once synclient PalmDetect=1
@@ -168,4 +169,5 @@ exec run-once fetchmail -d 60
168exec run-once qasmixer -t 169exec run-once qasmixer -t
169exec run-once tresorit --hidden 170exec run-once tresorit --hidden
170# exec run-once xfce4-power-manager 171# exec run-once xfce4-power-manager
171exec run-once blueman-applet \ No newline at end of file 172exec run-once blueman-applet
173exec run-once feh --bg-scale "/home/jason/Tresors/SpiderOak Hive/wallpaper/wallhaven-3601.jpg" \ No newline at end of file
diff --git a/i3/.i3status.conf b/i3/.i3status.conf
new file mode 100644
index 0000000..3a4b727
--- /dev/null
+++ b/i3/.i3status.conf
@@ -0,0 +1,59 @@
1general {
2# output_format = "xmobar"
3 colors = true
4 interval = 5
5}
6
7order += "ipv6"
8order += "disk /"
9order += "run_watch DHCP"
10order += "run_watch VPN"
11order += "wireless _first_"
12order += "ethernet _first_"
13order += "battery 0"
14order += "load"
15order += "volume master"
16order += "tztime local"
17
18wireless _first_ {
19 format_up = "W: (%quality at %essid) %ip"
20 format_down = "W: down"
21}
22
23ethernet _first_ {
24 # if you use %speed, i3status requires root privileges
25 format_up = "E: %ip (%speed)"
26 format_down = "E: down"
27}
28
29battery 0 {
30 format = "%status %percentage %remaining"
31}
32
33run_watch DHCP {
34 pidfile = "/var/run/dhclient*.pid"
35}
36
37run_watch VPN {
38 pidfile = "/run/openvpn/openvpn.pid"
39}
40
41tztime local {
42 format = "%Y-%m-%d %H:%M:%S"
43}
44
45load {
46 format = "%1min"
47}
48
49disk "/" {
50 format = "%avail"
51}
52
53volume master {
54 format = "♪: %volume"
55 format_muted = "♪: muted (%volume)"
56 device = "default"
57 mixer = "Master"
58 mixer_idx = 0
59} \ No newline at end of file