From adddfbc3ab35e6da14e0371f1eb771b5f9906302 Mon Sep 17 00:00:00 2001 From: wholteza Date: Sun, 21 Jan 2024 20:45:05 +0100 Subject: [PATCH] notification styling --- .bashrc | 1 + .config/i3/config | 8 +++++--- .config/requirements/install.sh | 15 ++++++++++++++- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.bashrc b/.bashrc index 8d2a904..a61ce08 100644 --- a/.bashrc +++ b/.bashrc @@ -138,6 +138,7 @@ alias ngdo='ngrok http --domain=devops-extension.ngrok.dev 3000' alias install-requirements='~/.config/requirements/install.sh' ### Colemak +export hostname="$(cat /etc/hostname)" alias colemak='~/.config/keyboard/colemak.sh' alias qwerty='~/.config/keyboard/qwerty.sh' diff --git a/.config/i3/config b/.config/i3/config index 17e30bd..c080849 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -29,9 +29,9 @@ set $text-color #0DA321 set $inactive-text-color #505254 set $urgent-bg-color #E53935 -exec_always export hostname="$(cat /etc/hostname)" -exec_always ~/.config/screenlayout/apply-screen-layout.sh -exec_always ~/.config/keyboard/apply-keyboard-layout.sh +exec_always export hostname="$(cat /etc/hostname)" && ~/.config/screenlayout/apply-screen-layout.sh +exec_always export hostname="$(cat /etc/hostname)" && ~/.config/keyboard/apply-keyboard-layout.sh +exec --no-startup-id blueman-applet set $mod Mod4 @@ -282,6 +282,8 @@ assign [class="discord"] $ws4 assign [class="Signal"] $ws4 ## 5: Social assign [class="Moonlight"] $ws5 +## 9: VPN +assign [class="OVPN"] $ws9 ## 10: Terminals assign [class="Alacritty"] $ws10 # resize window (you can also use the mouse for that) diff --git a/.config/requirements/install.sh b/.config/requirements/install.sh index c6ffe8f..4503b51 100755 --- a/.config/requirements/install.sh +++ b/.config/requirements/install.sh @@ -34,8 +34,19 @@ sudo apt install \ libxcb-xfixes0-dev \ libxkbcommon-dev \ python3 \ + dunst \ + bluez \ + bluez-utils \ + blueman \ + nvme-cli \ -y +# Remove ibus since it causes issues with my custom keyboard layout +sudo apt remove ibus + +sudo systemctl enable bluetooth.service + +# Used for scrot mkdir ~/Screenshots sudo snap install caprine @@ -45,14 +56,16 @@ sudo snap install firefox sudo snap install signal-desktop sudo snap install code --classic sudo snap install moonlight +sudo snap install heroic +# Dependencies for cargo sudo snap install rustup --classic rustup default stable - cargo install alacritty curl -s https://ohmyposh.dev/install.sh | sudo bash -s +# Access to brightness devices for brightnessctl sudo usermod -aG video wholteza source ~/.bashrc