From b71b4c3d31150caeaf019938990cbedc713cb3e5 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Thu, 16 Apr 2020 12:02:18 -0500 Subject: [PATCH] Minor changes. --- .bashrc | 2 ++ .config/qtile/config.py | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.bashrc b/.bashrc index b51e242..8b4d422 100644 --- a/.bashrc +++ b/.bashrc @@ -9,6 +9,7 @@ PATH="$HOME/.local/bin${PATH:+:${PATH}}" EDITOR="nvim" export TERM="st-256color" +export HISTCONTROL=ignoredups:erasedups # no duplicate entries [[ $- != *i* ]] && return @@ -143,6 +144,7 @@ ex () # root privileges alias doas="doas --" +alias sudo='sudo ' # navigation alias ..='cd ..' diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 957ef56..583aa41 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -203,6 +203,11 @@ keys = [ desc='Dmenu scrot script' ), ### My applications launched with SUPER + ALT + KEY + Key( + [mod, "mod1"], "b", + lazy.spawn("tabbed -r 2 surf -pe x '.surf/html/homepage.html'"), + desc='lynx browser' + ), Key( [mod, "mod1"], "l", lazy.spawn(myTerm+" -e lynx gopher://distro.tube"),