commit c42b14172002aee87089d0a751fa46105e44ae3f
parent 33889cff1cd84cf36f62431897bad42b803f8ac5
Author: klewer-martin <mk@inspiron.localdomain>
Date: Wed, 27 Jan 2021 14:06:22 -0300
Added new config files;
Diffstat:
3 files changed, 85 insertions(+), 4 deletions(-)
diff --git a/.vimrc b/.vimrc
@@ -0,0 +1,6 @@
+syntax on
+set encoding=utf8
+set tabstop=4
+set shiftwidth=4
+set colorcolumn=80
+
diff --git a/.xinitrc b/.xinitrc
@@ -1,7 +1,6 @@
-exec picom
-# The next command is only for vm's
-#xrandr -s 1360x768
+# swap block mayus and escape;
+setxkbmap -option caps:swapescape
-# start i3 window manager
+# start i3 window manager;
exec i3
diff --git a/i3status.conf b/i3status.conf
@@ -0,0 +1,76 @@
+# 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 += "volume master"
+order += "cpu_usage"
+order += "memory"
+order += "battery 0"
+order += "tztime local"
+order += "tztime buenos_aires"
+
+
+wireless _first_ {
+ format_up = " 📶: connected"
+ format_down = " 📶: down"
+}
+
+ethernet _first_ {
+ format_up = " E: Connected"
+ format_down = " E: unpluggled"
+}
+
+battery 0 {
+ format = " %status %percentage %remaining"
+ format_down = " No battery"
+ status_chr = "⚡:"
+ status_bat = "🔋:"
+ status_unk = "? UNK"
+ status_full = "🔌:"
+ path = "/sys/class/power_supply/BAT%d/uevent"
+ low_threshold = 20
+ threshold_type = percentage
+ last_full_capacity = true
+ integer_battery_capacity = true
+}
+
+memory {
+ format = " 🧮: %used"
+ threshold_degraded = "4G"
+# format_degraded = "MEMORY < %available"
+}
+
+volume master {
+ format = " 🔊: %volume"
+ format_muted = " 🔇: %volume"
+ device = "pulse"
+}
+
+tztime local {
+ format = " 📅: %a %e %b"
+}
+#
+tztime buenos_aires {
+ format = " 🕒: %H:%M"
+}
+
+tztime berlin {
+ format = ""
+}
+
+read_file uptime {
+ path = "/proc/uptime"
+}
+
+cpu_usage {
+ format = " 📟: %usage"
+}