old scripts cleanup
This commit is contained in:
parent
a876f3788e
commit
37ea7a5552
3 changed files with 1 additions and 39 deletions
|
@ -62,7 +62,7 @@ bindsym $mod+grave exec --no-startup-id dmenuunicode
|
||||||
bindsym $mod+Shift+Delete exec --no-startup-id pulsemixer --mute ; exec --no-startup-id mpc pause && pkill -RTMIN+10 i3blocks ; exec --no-startup-id pauseallmpv; workspace 0; exec $term -e htop ; exec $term -e lf
|
bindsym $mod+Shift+Delete exec --no-startup-id pulsemixer --mute ; exec --no-startup-id mpc pause && pkill -RTMIN+10 i3blocks ; exec --no-startup-id pauseallmpv; workspace 0; exec $term -e htop ; exec $term -e lf
|
||||||
|
|
||||||
# Show selection:
|
# Show selection:
|
||||||
bindsym $mod+Insert exec --no-startup-id showclip
|
bindsym $mod+Insert exec --no-startup-id notify-send "📋 Clipboard contents:" "$(xclip -o -selection clipboard)"
|
||||||
##bindsym $mod+Pause
|
##bindsym $mod+Pause
|
||||||
|
|
||||||
# #---Letter Key Bindings---# #
|
# #---Letter Key Bindings---# #
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
NUM="${2:-5}"
|
|
||||||
|
|
||||||
# Uncomment the following line to use Pulseaudio.
|
|
||||||
# PULSE=true
|
|
||||||
|
|
||||||
if [ "$PULSE" ]; then
|
|
||||||
toggle() { pulsemixer --toggle-mute ;}
|
|
||||||
mute() { pulsemixer --mute ;}
|
|
||||||
up() { pulsemixer --change-volume +"$NUM" ;}
|
|
||||||
down() { pulsemixer --change-volume -"$NUM" ;}
|
|
||||||
control() { pulsemixer ;}
|
|
||||||
else
|
|
||||||
toggle() { amixer sset Master toggle ;}
|
|
||||||
mute() { amixer sset Master mute ;}
|
|
||||||
up() { amixer sset Master "$NUM"%+ ;}
|
|
||||||
down() { amixer sset Master "$NUM"%- ;}
|
|
||||||
control() { alsamixer ;}
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
toggle) toggle ;;
|
|
||||||
mute) mute ;;
|
|
||||||
up) up ;;
|
|
||||||
down) down ;;
|
|
||||||
control) control ;;
|
|
||||||
esac
|
|
|
@ -1,10 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Display contents of selection via dunst if running.
|
|
||||||
# Separate script for i3.
|
|
||||||
|
|
||||||
clip=$(xclip -o -selection clipboard)
|
|
||||||
prim=$(xclip -o -selection primary)
|
|
||||||
|
|
||||||
[ -n "$clip" ] && notify-send "Clipboard:" "$clip"
|
|
||||||
[ -n "$prim" ] && notify-send "Primary:" "$prim"
|
|
Loading…
Reference in a new issue