Added laptop config

This commit is contained in:
Random
2021-04-04 11:24:39 -07:00
parent aa542fc1e8
commit d16dce3c30
5 changed files with 99 additions and 13 deletions

View File

@@ -40,10 +40,14 @@ bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOU
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
# start applications
bindsym $mod+Return exec i3-sensible-terminal
bindsym $mod+Shift+f exec firefox
bindsym $mod+Shift+d exec discord
bindsym Print exec "flameshot gui"
# kill focused window
bindsym $mod+q kill
bindsym $mod+Shift+q kill
# start dmenu (a program launcher)

61
i3/i3status.conf.laptop Normal file
View File

@@ -0,0 +1,61 @@
# i3status configuration file.
# see "man i3status" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general {
colors = true
interval = 1
}
order += "wireless tun0"
order += "wireless _first_"
order += "disk /"
order += "cpu_usage"
order += "memory"
order += "battery 0"
order += "volume master"
order += "tztime local"
wireless _first_ {
format_up = "WiFi: %ip (%bitrate at %essid)"
format_down = "WiFi: down"
}
wireless tun0 {
format_up = "VPN: %ip (%bitrate)"
format_down = "VPN: down"
}
disk "/" {
format = "HDD: %avail free, %used used"
}
cpu_usage {
format = "CPU: %usage"
}
memory {
format = "Memory: %used used, %available free"
threshold_degraded = "1G"
}
battery 0 {
format = "%status %percentage %remaining Hours"
path = "/sys/class/power_supply/BAT0/uevent"
}
volume master {
format = " %volume"
format_muted = " %volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}
tztime local {
format = "%A %m-%d-%Y %I:%M:%S"
}