From caf81aa16567765150192d702d322ad64a771f9c Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 25 Apr 2021 18:36:24 +0200 Subject: Move `autostart.sh` to `.local/bin` --- .config/qtile/autostart.sh | 20 -------------------- .config/qtile/config.py | 2 +- .local/bin/autostart.sh | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 21 deletions(-) delete mode 100755 .config/qtile/autostart.sh create mode 100755 .local/bin/autostart.sh diff --git a/.config/qtile/autostart.sh b/.config/qtile/autostart.sh deleted file mode 100755 index 871ef49..0000000 --- a/.config/qtile/autostart.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -xset -b - -#setxkbmap -option caps:swapescape -#setxkbmap -layout us,rs -variant ,alternatequotes -option grp:alt_shift_toggle,caps:swapescape - -numlockx & -dunst & -udiskie & - -#picom & -compton --backend glx & - -feh --bg-fill ~/stuff/pictures/alps-house.jpg - -#lxpolkit & -#gpg-agent & -#ssh-agent & - -mpd & diff --git a/.config/qtile/config.py b/.config/qtile/config.py index e7b2f89..878ddd6 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -14,7 +14,7 @@ terminal = "st -e tmux" @hook.subscribe.startup_once def autostart(): - home = os.path.expanduser('~/.config/qtile/autostart.sh') + home = os.path.expanduser('~/.local/bin/autostart.sh') subprocess.call([home]) diff --git a/.local/bin/autostart.sh b/.local/bin/autostart.sh new file mode 100755 index 0000000..f1cfe16 --- /dev/null +++ b/.local/bin/autostart.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +xset -b + +#setxkbmap -option caps:swapescape +#setxkbmap -layout us,rs,rs -variant ,alternatequotes,latin -option grp:alt_shift_toggle,caps:swapescape +setxkbmap -layout us,rs,rs -variant ,alternatequotes,latin -option caps:swapescape + +numlockx & +dunst & +udiskie & + +#picom & +compton --backend glx -b & + +feh --bg-fill ~/stuff/pictures/nantes.jpg + +#mpd & -- cgit v1.2.3