notification styling

This commit is contained in:
2024-01-21 20:45:05 +01:00
parent 564b328001
commit adddfbc3ab
3 changed files with 20 additions and 4 deletions

View File

@@ -138,6 +138,7 @@ alias ngdo='ngrok http --domain=devops-extension.ngrok.dev 3000'
alias install-requirements='~/.config/requirements/install.sh' alias install-requirements='~/.config/requirements/install.sh'
### Colemak ### Colemak
export hostname="$(cat /etc/hostname)"
alias colemak='~/.config/keyboard/colemak.sh' alias colemak='~/.config/keyboard/colemak.sh'
alias qwerty='~/.config/keyboard/qwerty.sh' alias qwerty='~/.config/keyboard/qwerty.sh'

View File

@@ -29,9 +29,9 @@ set $text-color #0DA321
set $inactive-text-color #505254 set $inactive-text-color #505254
set $urgent-bg-color #E53935 set $urgent-bg-color #E53935
exec_always export hostname="$(cat /etc/hostname)" exec_always export hostname="$(cat /etc/hostname)" && ~/.config/screenlayout/apply-screen-layout.sh
exec_always ~/.config/screenlayout/apply-screen-layout.sh exec_always export hostname="$(cat /etc/hostname)" && ~/.config/keyboard/apply-keyboard-layout.sh
exec_always ~/.config/keyboard/apply-keyboard-layout.sh exec --no-startup-id blueman-applet
set $mod Mod4 set $mod Mod4
@@ -282,6 +282,8 @@ assign [class="discord"] $ws4
assign [class="Signal"] $ws4 assign [class="Signal"] $ws4
## 5: Social ## 5: Social
assign [class="Moonlight"] $ws5 assign [class="Moonlight"] $ws5
## 9: VPN
assign [class="OVPN"] $ws9
## 10: Terminals ## 10: Terminals
assign [class="Alacritty"] $ws10 assign [class="Alacritty"] $ws10
# resize window (you can also use the mouse for that) # resize window (you can also use the mouse for that)

View File

@@ -34,8 +34,19 @@ sudo apt install \
libxcb-xfixes0-dev \ libxcb-xfixes0-dev \
libxkbcommon-dev \ libxkbcommon-dev \
python3 \ python3 \
dunst \
bluez \
bluez-utils \
blueman \
nvme-cli \
-y -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 mkdir ~/Screenshots
sudo snap install caprine sudo snap install caprine
@@ -45,14 +56,16 @@ sudo snap install firefox
sudo snap install signal-desktop sudo snap install signal-desktop
sudo snap install code --classic sudo snap install code --classic
sudo snap install moonlight sudo snap install moonlight
sudo snap install heroic
# Dependencies for cargo
sudo snap install rustup --classic sudo snap install rustup --classic
rustup default stable rustup default stable
cargo install alacritty cargo install alacritty
curl -s https://ohmyposh.dev/install.sh | sudo bash -s curl -s https://ohmyposh.dev/install.sh | sudo bash -s
# Access to brightness devices for brightnessctl
sudo usermod -aG video wholteza sudo usermod -aG video wholteza
source ~/.bashrc source ~/.bashrc