mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-06-06 22:43:44 +02:00
fix: dbus launch
This commit is contained in:
parent
3843f98087
commit
76cd51a2b3
13 changed files with 15 additions and 3 deletions
|
@ -3,7 +3,6 @@
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
|
||||||
# background services :
|
# background services :
|
||||||
exec-once = export $(dbus-launch) &
|
|
||||||
exec-once = dbus-update-activation-environment --all &
|
exec-once = dbus-update-activation-environment --all &
|
||||||
exec-once = ~/.config/hypr/scripts/keyring-launch.sh &
|
exec-once = ~/.config/hypr/scripts/keyring-launch.sh &
|
||||||
exec-once = sleep 1 && pipewire &
|
exec-once = sleep 1 && pipewire &
|
||||||
|
|
12
configs/sh/.bashrc
Normal file
12
configs/sh/.bashrc
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# .bashrc
|
||||||
|
export $(dbus-launch)
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
PS1='[\u@\h \W]\$ '
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
|
||||||
|
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
|
||||||
|
eval "$(atuin init bash)"
|
|
@ -1,3 +1,4 @@
|
||||||
|
export $(dbus-launch)
|
||||||
export ZELLIJ_START=false
|
export ZELLIJ_START=false
|
||||||
export ZSH="$HOME/.oh-my-zsh"
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
export OS_ID="$(grep -i -w 'ID=' /etc/os-release | awk -F= '{print $2}')"
|
export OS_ID="$(grep -i -w 'ID=' /etc/os-release | awk -F= '{print $2}')"
|
4
stow.sh
4
stow.sh
|
@ -51,7 +51,7 @@ unstow_shortcuts() {
|
||||||
|
|
||||||
stow_dotfiles() {
|
stow_dotfiles() {
|
||||||
create_symlinks $configs_dir/dotfiles ~/.config
|
create_symlinks $configs_dir/dotfiles ~/.config
|
||||||
create_symlinks $configs_dir/zsh ~/
|
create_symlinks $configs_dir/sh ~/
|
||||||
|
|
||||||
echo "Dotfiles stowed successfully!"
|
echo "Dotfiles stowed successfully!"
|
||||||
}
|
}
|
||||||
|
@ -69,7 +69,7 @@ unstow_dotfiles() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for config in $configs_dir/zsh/.*; do
|
for config in $configs_dir/sh/.*; do
|
||||||
if [ -f $config ]; then
|
if [ -f $config ]; then
|
||||||
local file_name=$(basename $config)
|
local file_name=$(basename $config)
|
||||||
local target_file=~/$file_name
|
local target_file=~/$file_name
|
||||||
|
|
Loading…
Add table
Reference in a new issue