From 476f752ce179fce397ddbcb13a9b0e059959c2f3 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sun, 30 Mar 2025 18:43:25 +0300 Subject: Made tmux act accordingly and changed some important stuff around here. Changes to be committed: modified: Vencord/settings/settings.json modified: alacritty/alacritty.toml modified: keybinds modified: tmux/tmux.conf modified: zsh/aliases --- keybinds | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'keybinds') diff --git a/keybinds b/keybinds index aa850ad..a5bd332 100644 --- a/keybinds +++ b/keybinds @@ -40,7 +40,7 @@ alt + shift + BackSpace ### APPLICATIONS ### -# Firefox +# Firefox (this didn't age well) alt + f firefox @@ -50,6 +50,11 @@ alt + f alt + shift + f brave +# Chromium (dev testing) + +alt + shift + c + chromium + # LibreWolf alt + w @@ -65,20 +70,27 @@ alt + d alt + shift + d dino +# Pcmanfm (Explorer / File Manager) + +alt + e + pcmanfm + ### HARDWARE KEYS ### # brightness control XF86MonBrightnessDown - sudo backlight 0 + notify-send --replace-id=1 "🌑 Brightness Down" && sudo backlight 0 # Moon Emoji XF86MonBrightnessUp - sudo backlight 255 + notify-send --replace-id=1 "🌞 Brightness Up" && sudo backlight 255 # Sun Emoji # volume control + XF86Audio{Raise,Lower}Volume - amixer --card 0 set Master 1%{+,-} + amixer --card 0 set Master 1%{+,-} && notify-send --replace-id=2 "🔊 Volume $(amixer --card 0 get Master | tail -n 1 | sed 's/.*Playback [0-9]\+ \[\([0-9]\+%\)\].*/\1/')" # mute audio output control + XF86AudioMute - [ $(amixer --card 0 get Master | tail -n 1 | sed -E 's/.*.\[//g' | cut -c1-2) = "on" ] && ( notify-send "🔇 Muted" && amixer --card 0 set Master mute ) || ( amixer --card 0 set Master unmute && notify-send "📢 Unmuted" ) + [ $(amixer --card 0 get Master | tail -n 1 | sed -E 's/.*.\[//g' | cut -c1-2) = "on" ] && ( notify-send --replace-id=3 "🔇 Muted" && amixer --card 0 set Master mute ) || ( amixer --card 0 set Master unmute && notify-send --replace-id=3 "📢 Unmuted" ) -- cgit v1.2.3