diff options
-rw-r--r-- | gtk-3.0/settings.ini | 6 | ||||
-rw-r--r-- | i3/bar.py | 4 | ||||
-rw-r--r-- | i3/config | 9 | ||||
-rw-r--r-- | termite/config | 2 | ||||
-rw-r--r-- | zsh/profile-zorg | 21 |
5 files changed, 32 insertions, 10 deletions
diff --git a/gtk-3.0/settings.ini b/gtk-3.0/settings.ini index e16e892..a0f7de0 100644 --- a/gtk-3.0/settings.ini +++ b/gtk-3.0/settings.ini @@ -1,6 +1,6 @@ -[# SubjectSettings] -gtk-theme-name=Adawaita -gtk-icon-theme-name=elementary-xfce-darkest +[Settings] +gtk-theme-name=Numix +gtk-icon-theme-name=elementary gtk-font-name=Ubuntu 9 gtk-cursor-theme-size=0 gtk-toolbar-style=GTK_TOOLBAR_BOTH @@ -18,7 +18,7 @@ status.register("battery", "CHR": "↑", "FULL": "=", }, - battery_ident="BAT1",) + battery_ident="BAT0",) status.register("temp", @@ -36,7 +36,7 @@ status.register("pulseaudio", # },) status.register("network", - interface="wlp3s0", + interface="wlp4s0", format_up="{essid:.10s}: {v4cidr} {quality:3.0f}%",) # Shows disk usage of / @@ -1,7 +1,7 @@ set $mod Mod4 #font pango:visitor tt2 brk 10 -font pango:Source Code Pro 8 +font pango:Source Code Pro 9 floating_modifier $mod bindsym $mod+Return exec termite @@ -111,7 +111,7 @@ bindsym $mod+r mode "resize" # i3bar bar { - status_command python ~/.config/i3/bar.py + status_command ~/.local/venv/bin/python ~/.config/i3/bar.py position bottom workspace_buttons yes colors { @@ -142,10 +142,11 @@ bindsym XF86AudioPrev exec --no-startup-id mpc prev # control PulseAudio from media keys bindsym XF86AudioMute exec volumecontrol mute -bindsym XF86Back exec volumecontrol lower +bindsym XF86AudioMicMute exec volumecontrol mute-mic bindsym XF86AudioLowerVolume exec volumecontrol lower -bindsym XF86Forward exec volumecontrol raise bindsym XF86AudioRaiseVolume exec volumecontrol raise + + bindsym XF86ScreenSaver exec screenlock.bash diff --git a/termite/config b/termite/config index 2d11307..fa2247e 100644 --- a/termite/config +++ b/termite/config @@ -9,7 +9,7 @@ allow_bold = true dynamic_title = true urgent_on_bell = true clickable_url = true -font = FNCP6 9.2 +font = FNCP6 10.2 scrollback_lines = 1000 search_wrap = true icon_name = terminal diff --git a/zsh/profile-zorg b/zsh/profile-zorg new file mode 100644 index 0000000..0a19020 --- /dev/null +++ b/zsh/profile-zorg @@ -0,0 +1,21 @@ +if (( UID )); then + if [[ -x "$HOME"/.local/lib/libwcwidth.so ]]; then + export LD_PRELOAD="$HOME"/.local/lib/libwcwidth.so + fi + + function { + local envfile="$XDG_RUNTIME_DIR"/ssh-agent.env + local pid=$(awk -F'[=;]' 'FNR == 2 {print $2}' "$envfile" 2>/dev/null) + if [[ -n "$pid" ]] && kill -0 "$pid" &>/dev/null; then + source "$envfile" >/dev/null + else + ssh-agent > "$envfile" + source "$envfile" >/dev/null + fi + } + + export MAILDIR="$HOME"/mail + export MANPATH="$(manpath)":"$HOME"/.local/share/man +fi + +# vim: ft=zsh |