diff options
Diffstat (limited to '.config/i3/config')
| -rw-r--r-- | .config/i3/config | 23 | 
1 files changed, 14 insertions, 9 deletions
| diff --git a/.config/i3/config b/.config/i3/config index 4df4590..2fe84cc 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -6,7 +6,7 @@ set $sigaudio pkill -75 i3blocks  ## WORKSPACES -workspace_auto_back_and_forth yes +#workspace_auto_back_and_forth yes  set $ws1  "1:"  set $ws2  "2:" @@ -56,8 +56,8 @@ bindsym Mod1+shift+9 move container to workspace $ws9  bindsym Mod1+shift+0 move container to workspace $ws10  # move workspaces between outputs on dock -bindsym Mod1+d			exec xrandr --output DP-3 --auto --primary --output eDP-1 --auto --off ; exec doas sysctl hw.acpi.lid_switch_state=0 -bindsym Mod1+shift+d	exec xrandr --output DP-3 --auto --off --output eDP-1 --auto --primary ; exec doas sysctl hw.acpi.lid_switch_state=S3  +bindsym Mod1+d			exec xrandr --output DP-3 --auto --primary --output eDP-1 --auto --panning 2560x1440  +bindsym Mod1+shift+d	exec xrandr --output eDP-1 --auto --primary --panning 0x0 --output DP-3 --mode 1920x1080   ## WINDOWS @@ -113,10 +113,10 @@ bindsym Mod1+Return 			split horizontal; exec $term  bindsym Mod1+shift+Return		split vertical; exec $term  bindsym Mod4+p					exec arandr  bindsym Mod4+l					exec xautolock -locknow -bindsym Mod1+F1  exec rofi -show run -bindsym Mod1+shift+F1  exec rofi -show ssh -bindsym Mod1+F2  exec firefox -bindsym Mod1+F3  exec thunderbird +bindsym Mod1+F1					exec rofi -show run +bindsym Mod1+shift+F1			workspace $ws9 ; exec rofi -show ssh +bindsym Mod1+F2					workspace $ws2 ; exec firefox +bindsym Mod1+F3					workspace $ws3 ; exec thunderbird  #bindsym Mod1+F4  exec  #bindsym Mod1+F5  exec  #bindsym Mod1+F1  exec @@ -132,8 +132,8 @@ bindsym Mod1+F12				exec mixer vol 0 && $sigaudio  bindsym XF86AudioLowerVolume	exec mixer vol -5 && $sigaudio  bindsym XF86AudioRaiseVolume 	exec mixer vol +5 && $sigaudio  bindsym XF86AudioMute			exec mixer vol 0 && $sigaudio -bindsym --release Print			exec import -window root ~/Nextcloud/InstantUpload/Screenshots/`date +"%Y-%m-%d-%H-%M-%S"`.png -bindsym --release shift+Print	exec import -monitor ~/Nextcloud/InstantUpload/Screenshots/`date +"%Y-%m-%d-%H-%M-%S"`.png +bindsym --release Print			exec import -window root ~/`date +"%Y-%m-%d-%H-%M-%S"`.png +bindsym --release shift+Print	exec import -monitor ~/`date +"%Y-%m-%d-%H-%M-%S"`.png  ## COLORS @@ -175,3 +175,8 @@ bar {  		urgent_workspace $color_bar_urgent $color_bar_urgent $color15  	}  } + +## ASSIGNMENTS + +assign [class="Firefox"] 2 +assign [class="Thunderbird"] 3 |