mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Load user settings from config file.
|
|
. ~/.config/settings.conf
|
|
|
|
cat ~/.config/i3/shared.conf ~/.config/i3/${computer}.conf > ~/.config/i3/config
|
|
|
|
if command -v i3-msg &> /dev/null; then
|
|
i3-msg reload
|
|
elif command -v swaymsg &> /dev/null; then
|
|
swaymsg reload
|
|
fi
|