summaryrefslogtreecommitdiff
path: root/keybinds
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2025-03-30 18:43:25 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2025-03-30 18:43:25 +0300
commit476f752ce179fce397ddbcb13a9b0e059959c2f3 (patch)
treebe2df7e190658f275df73e644ba70075e5c8b47e /keybinds
parent5651b13cccfd50d786df94c997641b1c0b766413 (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--keybinds22
1 files changed, 17 insertions, 5 deletions
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" )