aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-05-01 17:31:51 +0200
committerMateja <mail@matejamaric.com>2021-05-01 17:31:51 +0200
commit3858306acd6ebf93ee826a1c161d3096f6b0bf35 (patch)
tree979509e3636fb6719f37fdefe50b0cc7a16b4628 /.config
parentc6fc484be86316b9a5f96b68aaaf192671983d17 (diff)
downloaddotfiles-3858306acd6ebf93ee826a1c161d3096f6b0bf35.tar.gz
dotfiles-3858306acd6ebf93ee826a1c161d3096f6b0bf35.zip
Use `.xprofile` instead of `autostart.sh`.
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua2
-rw-r--r--.config/qtile/config.py6
2 files changed, 0 insertions, 8 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 6400075..05e9714 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -66,8 +66,6 @@ awful.layout.layouts = {
-- Keyboard map indicator and switcher
mykeyboardlayout = awful.widget.keyboardlayout()
-awful.spawn.with_shell("~/.local/bin/autostart.sh")
-
-- Wibar --------------------------------------------------------------------
-- Create a textclock widget
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 878ddd6..dedfe6c 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -12,12 +12,6 @@ mod = "mod4"
terminal = "st -e tmux"
-@hook.subscribe.startup_once
-def autostart():
- home = os.path.expanduser('~/.local/bin/autostart.sh')
- subprocess.call([home])
-
-
keys = [
# Audio
Key([mod], "h", lazy.spawn("amixer -q sset Master 1%+"),