Compare commits

..

5 Commits

Author SHA1 Message Date
680073eae4 Fix screen positions
Screen names changed after an update, causing position issues
2024-12-08 17:39:59 +01:00
cd390d5580 Adapt config to usb-c dock 2023-02-10 22:07:42 +01:00
6e7b4db8d5 Merge branch 'master' into jackpot 2023-02-10 22:07:12 +01:00
9529be76cd Merge branch 'master' into jackpot 2023-02-10 22:02:56 +01:00
69f1b40398 Sorted config
* moved jackpot-specific config to separate file
2021-11-04 16:54:15 +01:00
2 changed files with 50 additions and 12 deletions

12
config
View File

@ -42,18 +42,6 @@ exec_always swayidle -w \
# your displays after another 300 seconds, and turn your screens back on when
# resumed. It will also lock your screen before your computer goes to sleep.
### Input configuration
#
input * {
xkb_layout "fr"
xkb_variant "azerty"
xkb_options ""
repeat_delay 300
repeat_rate 60
}
input * xkb_numlock enable
### Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.

50
config.d/jackpot Normal file
View File

@ -0,0 +1,50 @@
### outputs config
#
output eDP-1 pos 0 0
output DP-2 pos 1920 0
output DP-4 pos 1920 0
output DP-5 pos 3840 0
input 2:14:ETPS/2_Elantech_Touchpad {
tap enabled
}
## inputs config
input 1386:827:Wacom_Intuos_S_2_Pen {
map_to_output DP-2
tap enabled
}
input * {
xkb_layout "fr"
xkb_variant "azerty"
xkb_options ""
repeat_delay 300
repeat_rate 60
}
input * xkb_numlock enable
### Function keys
#
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
bindsym XF86MonBrightnessDown exec brightnessctl set 5%- #TODO fix that
bindsym XF86MonBrightnessUp exec brightnessctl set +5% #TODO fix that
bindsym Ctrl+F12 output eDP-1 toggle
### Sreenshots
#
# Take a screenshot with all output and save it into screenshots
bindsym Print exec '$screenshot'
# Take a screenshot of the select window
bindsym Print+Ctrl exec '$screenshot_window'
# Take a Screenshot with the region select
bindsym Print+Alt exec '$screenshot_select'