diff options
| author | jason | 2017-04-20 16:26:26 -0600 |
|---|---|---|
| committer | jason | 2017-04-20 16:26:26 -0600 |
| commit | f176cf30293cf2793f83026a3587752b69b128a9 (patch) | |
| tree | 32f63dd186cf934f17d312f81ac9a6e1f94dab07 /i3 | |
| parent | c8cbfca2650ae3502508fa2d04cfa24c8923a851 (diff) | |
| download | dotfiles-f176cf30293cf2793f83026a3587752b69b128a9.tar.gz dotfiles-f176cf30293cf2793f83026a3587752b69b128a9.zip | |
Update i3 configs
Diffstat (limited to 'i3')
| -rw-r--r-- | i3/.config/i3/config | 6 | ||||
| -rw-r--r-- | i3/.i3status.conf | 59 |
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 | ||
| 162 | exec run-once nm-applet | 162 | # exec run-once nm-applet |
| 163 | exec run-once wicd-client -t | ||
| 163 | exec run-once clipit | 164 | exec run-once clipit |
| 164 | exec run-once xbindkeys | 165 | exec run-once xbindkeys |
| 165 | exec run-once synclient PalmDetect=1 | 166 | exec run-once synclient PalmDetect=1 |
| @@ -168,4 +169,5 @@ exec run-once fetchmail -d 60 | |||
| 168 | exec run-once qasmixer -t | 169 | exec run-once qasmixer -t |
| 169 | exec run-once tresorit --hidden | 170 | exec run-once tresorit --hidden |
| 170 | # exec run-once xfce4-power-manager | 171 | # exec run-once xfce4-power-manager |
| 171 | exec run-once blueman-applet \ No newline at end of file | 172 | exec run-once blueman-applet |
| 173 | exec 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 @@ | |||
| 1 | general { | ||
| 2 | # output_format = "xmobar" | ||
| 3 | colors = true | ||
| 4 | interval = 5 | ||
| 5 | } | ||
| 6 | |||
| 7 | order += "ipv6" | ||
| 8 | order += "disk /" | ||
| 9 | order += "run_watch DHCP" | ||
| 10 | order += "run_watch VPN" | ||
| 11 | order += "wireless _first_" | ||
| 12 | order += "ethernet _first_" | ||
| 13 | order += "battery 0" | ||
| 14 | order += "load" | ||
| 15 | order += "volume master" | ||
| 16 | order += "tztime local" | ||
| 17 | |||
| 18 | wireless _first_ { | ||
| 19 | format_up = "W: (%quality at %essid) %ip" | ||
| 20 | format_down = "W: down" | ||
| 21 | } | ||
| 22 | |||
| 23 | ethernet _first_ { | ||
| 24 | # if you use %speed, i3status requires root privileges | ||
| 25 | format_up = "E: %ip (%speed)" | ||
| 26 | format_down = "E: down" | ||
| 27 | } | ||
| 28 | |||
| 29 | battery 0 { | ||
| 30 | format = "%status %percentage %remaining" | ||
| 31 | } | ||
| 32 | |||
| 33 | run_watch DHCP { | ||
| 34 | pidfile = "/var/run/dhclient*.pid" | ||
| 35 | } | ||
| 36 | |||
| 37 | run_watch VPN { | ||
| 38 | pidfile = "/run/openvpn/openvpn.pid" | ||
| 39 | } | ||
| 40 | |||
| 41 | tztime local { | ||
| 42 | format = "%Y-%m-%d %H:%M:%S" | ||
| 43 | } | ||
| 44 | |||
| 45 | load { | ||
| 46 | format = "%1min" | ||
| 47 | } | ||
| 48 | |||
| 49 | disk "/" { | ||
| 50 | format = "%avail" | ||
| 51 | } | ||
| 52 | |||
| 53 | volume 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 | ||