Compare commits

...

3 Commits

6 changed files with 33 additions and 3 deletions

View File

@ -4,7 +4,7 @@ JACK settings, as persisted by D-Bus object.
You probably don't want to edit this because
it will be overwritten next time jackdbus saves.
-->
<!-- Thu Apr 20 18:56:48 2023 -->
<!-- Thu Feb 1 16:21:48 2024 -->
<jack>
<engine>
<option name="driver">alsa</option>
@ -12,11 +12,11 @@ it will be overwritten next time jackdbus saves.
</engine>
<drivers>
<driver name="alsa">
<option name="capture">hw:PCH,0</option>
<option name="capture">hw:iD14,0</option>
<option name="playback">hw:PCH,0</option>
<option name="rate">44100</option>
<option name="period">2048</option>
<option name="inchannels">0</option>
<option name="inchannels">2</option>
<option name="outchannels">2</option>
<option name="midi-driver">seq</option>
</driver>

View File

@ -0,0 +1,3 @@
@realtime - rtprio 99
@realtime - memlock unlimited
@realtime - nice unlimited

View File

@ -0,0 +1 @@
/etc/security/limits.d

View File

@ -0,0 +1,18 @@
configuration{
modi: "run,drun,window";
icon-theme: "JetBrainsMono Nerd Font";
show-icons: true;
terminal: "terminator";
drun-display-format: "{icon} {name}";
location: 0;
disable-history: false;
hide-scrollbar: true;
display-drun: "  Apps ";
display-run: "  Run ";
display-window: "  Window";
display-Network: " 󰤨 Network";
sidebar-mode: true;
}
@theme "catppuccin-mocha"

2
.env
View File

@ -6,3 +6,5 @@ export PATH="$PATH:/home/go/bin:/usr/local/.local/bin:~/node_modules/.bin"
# system on another partition than user data, so that copying between partitions is denied by gio.
# another solution is to link $XDG_DATA_HOME/Trash somewhere on the same partition as user data
export ELECTRON_TRASH="trash-cli"
export ZSH_COLORIZE_TOOL="pygmentize"
export ZSH_COLORIZE_STYLE="catppuccin-macchiato"

View File

@ -100,6 +100,10 @@ if [ ! -z "$INIT" ]; then
yay -Syu --needed --noconfirm - < ${CONFIG}/${ARCH_PACKAGES}/${FINAL_CONFIG}
echo -e "* Changing shell to ZSH..."
sudo chsh -s $(which zsh)
if [ "$ENV" = "desk" ]; then
echo -e "* Add user to realtime group..."
sudo usermod -aG realtime $(whoami)
fi
# https://man.archlinux.org/man/rofi-dmenu.5
echo -e "* Symlink dmenu → rofi..."
sudo ln -sf /usr/bin/rofi /usr/bin/dmenu
@ -133,6 +137,8 @@ if [ ! -z "$INIT" ]; then
echo -e "\tFor gtk..."
# Change icon color for Papirus Icon Theme
papirus-folders -C cat-latte-flamingo --theme Papirus-Dark
echo -e "\tFor Pygments..."
pip install --break-system-packages 'catppuccin[pygments]'
# Basic directory structure
echo -e "* Create base home directories..."
mkdir -p ~/documents ~/images/screenshots ~/videos ~/downloads