From 3f3f331f18e414e62e1a870f88a030346b6ab468 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Tue, 2 Jul 2019 15:43:05 -0500 Subject: [PATCH] Minor changes --- .config/awesome/rc.lua | 8 +++++--- .config/qtile/config.py | 31 ++++++++++++++++++++++++++++--- .zshrc | 2 +- 3 files changed, 34 insertions(+), 7 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 631188c..cdd5e6a 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -268,7 +268,7 @@ globalkeys = my_table.join( -- dmenu awful.key({ modkey, "Shift" }, "Return", function () - awful.spawn(string.format("dmenu_run -i -nb '#292d3e' -nf '#ffffff' -sb '#fea63c' -sf '#191919' -fn 'UbuntuMono Nerd Font:bold:pixelsize=14'", + awful.spawn(string.format("dmenu_run -i -nb '#292d3e' -nf '#bbc5ff' -sb '#82AAFF' -sf '#292d3e' -fn 'UbuntuMono Nerd Font:bold:pixelsize=14'", beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus)) end, {description = "show dmenu", group = "hotkeys"}), @@ -279,6 +279,8 @@ globalkeys = my_table.join( {description = "edit config files" , group = "dmenu scripts" }), awful.key({ modkey, "Shift" }, "m", function () awful.util.spawn( "./.dmenu/dmenu-sysmon.sh" ) end, {description = "system monitoring apps" , group = "dmenu scripts" }), + awful.key({ modkey, "Shift" }, "p", function () awful.util.spawn( "passmenu" ) end, + {description = "passmenu" , group = "dmenu scripts" }), awful.key({ modkey, "Shift" }, "s", function () awful.util.spawn( "./.dmenu/dmenu-surfraw.sh" ) end, {description = "surfraw web search" , group = "dmenu scripts" }), @@ -308,8 +310,8 @@ globalkeys = my_table.join( {description = "pianobar" , group = "terminal apps" }), awful.key({ modkey, altkey }, "r", function () awful.util.spawn( "st -e rtv" ) end, {description = "rtv" , group = "terminal apps" }), - awful.key({ modkey, altkey }, "t", function () awful.util.spawn( "st -e rtorrent" ) end, - {description = "rtorrent" , group = "terminal apps" }), + awful.key({ modkey, altkey }, "t", function () awful.util.spawn( "sh /home/dt/thinkorswim/thinkorswim" ) end, + {description = "thinkorswim" , group = "gui apps" }), awful.key({ modkey, altkey }, "w", function () awful.util.spawn( "st -e wopr report.xml" ) end, {description = "wopr report.xml" , group = "terminal apps" }), awful.key({ modkey, altkey }, "y", function () awful.util.spawn( "st -e youtube-viewer" ) end, diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 44274fe..d880726 100755 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -172,12 +172,37 @@ def init_keys(): [mod], "g", lazy.spawn("geany") ), - # Apps Launched with + + + # Dmenu Run Launcher Key( - [mod], "KP_Insert", # Keypad 0 - # lazy.spawncmd() # Qtile Run Dialog + [mod, "shift"], "Return", + # lazy.spawncmd() lazy.spawn("dmenu_run -fn 'UbuntuMono Nerd Font:size=10' -nb '#292d3e' -nf '#bbc5ff' -sb '#82AAFF' -sf '#292d3e' -p 'dmenu:'") ), + + + Key( + [mod, "shift"], "e", + # lazy.spawncmd() + lazy.spawn("./.dmenu/dmenu-edit-configs.sh") + ), + Key( + [mod, "shift"], "m", + # lazy.spawncmd() + lazy.spawn("./.dmenu/dmenu-sysmon.sh") + ), + Key( + [mod, "shift"], "p", + # lazy.spawncmd() + lazy.spawn("passmenu") + ), + Key( + [mod, "shift"], "s", + # lazy.spawncmd() + lazy.spawn("./.dmenu/dmenu-surfraw.sh") + ), + + Key( [mod], "KP_End", # Keypad 1 lazy.spawn(myTerm+" -e lynx -cfg=~/.lynx/lynx.cfg -lss=~/.lynx/lynx.lss gopher://distro.tube") diff --git a/.zshrc b/.zshrc index fca7560..04c2103 100644 --- a/.zshrc +++ b/.zshrc @@ -96,7 +96,7 @@ plugins=( if [[ -n $SSH_CONNECTION ]]; then export EDITOR='vim' else - export EDITOR='mvim' + export EDITOR='vim' fi # Compilation flags