Compare commits
3 Commits
bb1a0f23e0
...
f126572738
Author | SHA1 | Date |
---|---|---|
Quentin Duchemin | f126572738 | |
Quentin Duchemin | 9194648e9a | |
Quentin Duchemin | 46318211ed |
|
@ -4,7 +4,7 @@ JACK settings, as persisted by D-Bus object.
|
||||||
You probably don't want to edit this because
|
You probably don't want to edit this because
|
||||||
it will be overwritten next time jackdbus saves.
|
it will be overwritten next time jackdbus saves.
|
||||||
-->
|
-->
|
||||||
<!-- Thu Apr 20 18:56:48 2023 -->
|
<!-- Thu Feb 1 16:21:48 2024 -->
|
||||||
<jack>
|
<jack>
|
||||||
<engine>
|
<engine>
|
||||||
<option name="driver">alsa</option>
|
<option name="driver">alsa</option>
|
||||||
|
@ -12,11 +12,11 @@ it will be overwritten next time jackdbus saves.
|
||||||
</engine>
|
</engine>
|
||||||
<drivers>
|
<drivers>
|
||||||
<driver name="alsa">
|
<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="playback">hw:PCH,0</option>
|
||||||
<option name="rate">44100</option>
|
<option name="rate">44100</option>
|
||||||
<option name="period">2048</option>
|
<option name="period">2048</option>
|
||||||
<option name="inchannels">0</option>
|
<option name="inchannels">2</option>
|
||||||
<option name="outchannels">2</option>
|
<option name="outchannels">2</option>
|
||||||
<option name="midi-driver">seq</option>
|
<option name="midi-driver">seq</option>
|
||||||
</driver>
|
</driver>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
@realtime - rtprio 99
|
||||||
|
@realtime - memlock unlimited
|
||||||
|
@realtime - nice unlimited
|
|
@ -0,0 +1 @@
|
||||||
|
/etc/security/limits.d
|
|
@ -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
2
.env
|
@ -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.
|
# 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
|
# another solution is to link $XDG_DATA_HOME/Trash somewhere on the same partition as user data
|
||||||
export ELECTRON_TRASH="trash-cli"
|
export ELECTRON_TRASH="trash-cli"
|
||||||
|
export ZSH_COLORIZE_TOOL="pygmentize"
|
||||||
|
export ZSH_COLORIZE_STYLE="catppuccin-macchiato"
|
||||||
|
|
|
@ -100,6 +100,10 @@ if [ ! -z "$INIT" ]; then
|
||||||
yay -Syu --needed --noconfirm - < ${CONFIG}/${ARCH_PACKAGES}/${FINAL_CONFIG}
|
yay -Syu --needed --noconfirm - < ${CONFIG}/${ARCH_PACKAGES}/${FINAL_CONFIG}
|
||||||
echo -e "* Changing shell to ZSH..."
|
echo -e "* Changing shell to ZSH..."
|
||||||
sudo chsh -s $(which 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
|
# https://man.archlinux.org/man/rofi-dmenu.5
|
||||||
echo -e "* Symlink dmenu → rofi..."
|
echo -e "* Symlink dmenu → rofi..."
|
||||||
sudo ln -sf /usr/bin/rofi /usr/bin/dmenu
|
sudo ln -sf /usr/bin/rofi /usr/bin/dmenu
|
||||||
|
@ -133,6 +137,8 @@ if [ ! -z "$INIT" ]; then
|
||||||
echo -e "\tFor gtk..."
|
echo -e "\tFor gtk..."
|
||||||
# Change icon color for Papirus Icon Theme
|
# Change icon color for Papirus Icon Theme
|
||||||
papirus-folders -C cat-latte-flamingo --theme Papirus-Dark
|
papirus-folders -C cat-latte-flamingo --theme Papirus-Dark
|
||||||
|
echo -e "\tFor Pygments..."
|
||||||
|
pip install --break-system-packages 'catppuccin[pygments]'
|
||||||
# Basic directory structure
|
# Basic directory structure
|
||||||
echo -e "* Create base home directories..."
|
echo -e "* Create base home directories..."
|
||||||
mkdir -p ~/documents ~/images/screenshots ~/videos ~/downloads
|
mkdir -p ~/documents ~/images/screenshots ~/videos ~/downloads
|
||||||
|
|
Loading…
Reference in New Issue