fixed stuff
This commit is contained in:
parent
733df2399f
commit
09a7942047
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.7 MiB |
7
config
7
config
|
@ -11,7 +11,8 @@ set $up k
|
|||
set $right l
|
||||
|
||||
# Your preferred terminal emulator
|
||||
set $term foot
|
||||
set $term footclient
|
||||
exec foot --server
|
||||
|
||||
#directory of this config for global script and asset location
|
||||
set $dir /home/gunalx/.config/sway
|
||||
|
@ -37,7 +38,7 @@ assign [class="autostart4"] workspace 4
|
|||
|
||||
exec firefox
|
||||
exec $term --class autostart2
|
||||
exec code --class autostart3
|
||||
#exec code --class autostart3
|
||||
|
||||
|
||||
#add dynamic names/emojis to workspaces using sway-dynamic-names --found this to be really buggy with 0 indexing, and dedicating workspaces
|
||||
|
@ -105,7 +106,9 @@ input * {
|
|||
|
||||
#bind system keys:
|
||||
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||
bindsym F3 exec pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
|
||||
bindsym F2 exec pactl set-sink-volume @DEFAULT_SINK@ -5%
|
||||
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||
bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
||||
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
#!/bin/bash
|
||||
FILENAME="screenshot-$(date +%F-%T).png"
|
||||
SCREENSHOT_PATH="$HOME/Pictures/screenshots/$FILENAME"
|
||||
swaymsg screenshot -o $SCREENSHOT_PATH
|
||||
echo -n $SCREENSHOT_PATH | wl-copy
|
||||
|
||||
FILENAME="screenshot-`date +%F-%T`"
|
||||
grim -g "$(slurp)" ~/Pictures/screenshots/$FILENAME.png
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
FILENAME="screenshot-`date +%F-%T`"
|
||||
grim -g "$(slurp)" ~/Pictures/screenshots/$FILENAME.png
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
FILENAME="screenshot-$(date +%F-%T).png"
|
||||
SCREENSHOT_PATH="$HOME/Pictures/screenshots/$FILENAME"
|
||||
swaymsg screenshot -o $SCREENSHOT_PATH
|
||||
echo -n $SCREENSHOT_PATH | wl-copy
|
||||
|
Loading…
Reference in New Issue