Add Picom and KeePass to autostart
This commit is contained in:
parent
9706f82e8e
commit
287e5acdb2
4 changed files with 48 additions and 15 deletions
14
.config/autostart/org.keepassxc.KeePassXC.desktop
Normal file
14
.config/autostart/org.keepassxc.KeePassXC.desktop
Normal file
|
@ -0,0 +1,14 @@
|
|||
[Desktop Entry]
|
||||
Name=KeePassXC
|
||||
GenericName=Passwortmanager
|
||||
Exec=/usr/bin/keepassxc
|
||||
TryExec=/usr/bin/keepassxc
|
||||
Icon=keepassxc
|
||||
StartupWMClass=keepassxc
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Version=1.0true
|
||||
Categories=Utility;Security;Qt;
|
||||
MimeType=application/x-keepass2;
|
||||
X-GNOME-Autostart-enabled=true
|
11
.config/autostart/picom.desktop
Normal file
11
.config/autostart/picom.desktop
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=picom
|
||||
GenericName=X compositor
|
||||
Comment=A X compositor
|
||||
Categories=Utility;
|
||||
Keywords=compositor;composite manager;window effects;transparency;opacity;
|
||||
TryExec=picom -b --config ~/.config/picom.conf
|
||||
Exec=picom -b --config ~/.config/picom.conf
|
||||
# Thanks to quequotion for providing this file!
|
|
@ -1,17 +1,3 @@
|
|||
# Don't check for new mail
|
||||
export MAILCHECK=1
|
||||
|
||||
export GOPATH=$HOME/.golang
|
||||
export FONTCONFIG_PATH=/etc/fonts
|
||||
|
||||
export UID=$(id -u)
|
||||
export GID=$(id -g)
|
||||
|
||||
export PATH=$PATH:~/.local/bin:~/bin:
|
||||
export PATH=$PATH:$(composer global config bin-dir --absolute -q)
|
||||
|
||||
export EDITOR=vim
|
||||
|
||||
export LANG="en_US.UTF-8"
|
||||
export LANGUAGE="en_US"
|
||||
export LC_CTYPE="de_DE.UTF-8"
|
||||
|
@ -27,3 +13,25 @@ export LC_TELEPHONE="de_DE.UTF-8"
|
|||
export LC_MEASUREMENT="de_DE.UTF-8"
|
||||
export LC_IDENTIFICATION="de_DE.UTF-8"
|
||||
export LC_ALL="de_DE.UTF-8"
|
||||
|
||||
# Don't check for new mail
|
||||
export MAILCHECK=1
|
||||
|
||||
export GOPATH=$HOME/.golang
|
||||
export FONTCONFIG_PATH=/etc/fonts
|
||||
|
||||
export UID=$(id -u)
|
||||
export GID=$(id -g)
|
||||
|
||||
export PATH=$PATH:~/.local/bin:~/bin:
|
||||
|
||||
export EDITOR=vim
|
||||
|
||||
|
||||
if [ -n "$(command -v composer)" ]; then
|
||||
export PATH=$PATH:$(composer global config bin-dir --absolute -q)
|
||||
fi
|
||||
|
||||
if [ -n "$(command -v rustc)" ]; then
|
||||
export RUST_SRC_PATH=$(rustc --print sysroot)/lib/rustlib/src/rust/library
|
||||
fi
|
||||
|
|
|
@ -25,7 +25,7 @@ sudo dnf install -y \
|
|||
|
||||
#echo 'Install my desktop stuff...'
|
||||
#sudo dnf install -y \
|
||||
# awesome dex-autostart pavucontrol
|
||||
# awesome picom dex-autostart pavucontrol
|
||||
|
||||
echo 'Installing graphical applications...'
|
||||
sudo dnf install -y \
|
||||
|
|
Loading…
Reference in a new issue