diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2025-03-30 18:43:25 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2025-03-30 18:43:25 +0300 |
commit | 476f752ce179fce397ddbcb13a9b0e059959c2f3 (patch) | |
tree | be2df7e190658f275df73e644ba70075e5c8b47e /keybinds | |
parent | 5651b13cccfd50d786df94c997641b1c0b766413 (diff) |
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
Diffstat (limited to 'keybinds')
-rw-r--r-- | keybinds | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -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" ) |