diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 19:23:38 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 19:23:38 +0530 |
commit | 9cb889be1d07ecd7a78ced64c243296e6eca7c46 (patch) | |
tree | 932d3a4a3e6294634371e8741282a42792a13906 | |
parent | cba44e682bd2b41ace586de4cf65901e81fb62bd (diff) |
edited some autostart apps
-rwxr-xr-x | .xprofile | 43 |
1 files changed, 20 insertions, 23 deletions
@@ -1,12 +1,11 @@ -#!/bin/zsh +#!/bin/sh # set .zshenv -[[ -f ~/.config/zsh/.zshenv ]] && source ~/.config/zsh/.zshenv +# [[ -f ~/.config/zsh/.zshenv ]] && source ~/.config/zsh/.zshenv # makes gnome-keyring work -# dbus-update-activation-environment --all & +bus-update-activation-environment --all & -# autostart apps for both xmonad and any other DE # emacs --daemon & #virtual_mic.sh & @@ -14,25 +13,23 @@ nitrogen --restore & # turn on the red danger light on the side # so i know it's turned on without opening the lid -brightnessctl --device hp::hddprotect set 100% +brightnessctl --device hp::hddprotect set 100% & -if [[ "$DESKTOP_SESSION" = "dwm" ]]; then +deadd-notification-center & +screensetup.sh & +lxpolkit & +$(setxkbmap -layout us,us -variant dvorak, -option caps:swapescape && sxhkd) & + +picom & +# dunst & +# udiskie & + +# glava -dm radial & +# polystart & +nm-applet & +blueman-applet & +flameshot & + +if [ "$DESKTOP_SESSION" = "dwm" ]; then luastatus-dwm & - # screensetup.sh & - - # autostart apps - # picom & - # dunst & - # udiskie & - - # glava -dm radial & - # polystart & - # nm-applet & - # blueman-applet & - # flameshot & - - # while :; do - # xsetroot -name "BAT: $(acpi | awk '{print $4}' | sed s/,//) | $(date '+%Y-%m-%d %H:%M:%S')" - # sleep 1 - # done & fi |