source code migrating from gitlab
This commit is contained in:
@@ -0,0 +1,223 @@
|
||||
set $mod Mod1
|
||||
font pango:Hack 9
|
||||
floating_modifier $mod
|
||||
|
||||
# start a terminal
|
||||
set $term kitty
|
||||
bindsym $mod+Return exec $term
|
||||
|
||||
# kill focused window
|
||||
bindsym $mod+q kill
|
||||
|
||||
# start dmenu (a program launcher)
|
||||
bindsym ctrl+space exec rofi -show run
|
||||
#bindsym ctrl+space exec "rofi -show combi -modi window,run,combi -combi-modi window,run"
|
||||
#bindsym ctrl+space exec dmenu_run
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Left focus left
|
||||
bindsym $mod+Down focus down
|
||||
bindsym $mod+Up focus up
|
||||
bindsym $mod+Right focus right
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Shift+Left move left
|
||||
bindsym $mod+Shift+Down move down
|
||||
bindsym $mod+Shift+Up move up
|
||||
bindsym $mod+Shift+Right move right
|
||||
|
||||
# split in horizontal orientation
|
||||
bindsym $mod+h split h
|
||||
|
||||
# split in vertical orientation
|
||||
bindsym $mod+v split v
|
||||
|
||||
bindsym $mod+t split toggle
|
||||
|
||||
# enter fullscreen mode for the focused container
|
||||
bindsym $mod+f fullscreen toggle
|
||||
|
||||
# change container layout (stacked, tabbed, toggle split)
|
||||
bindsym $mod+s layout stacking
|
||||
bindsym $mod+w layout tabbed
|
||||
bindsym $mod+e layout toggle split
|
||||
bindsym $mod+Shift+w sticky toggle
|
||||
|
||||
# toggle tiling / floating
|
||||
bindsym $mod+Shift+space floating toggle
|
||||
|
||||
# change focus between tiling / floating windows
|
||||
bindsym $mod+space focus mode_toggle
|
||||
|
||||
# focus the parent container
|
||||
bindsym $mod+a focus parent
|
||||
|
||||
# Define names for default workspaces for which we configure key bindings later on.
|
||||
# We use variables to avoid repeating the names in multiple places.
|
||||
set $ws1 "1"
|
||||
set $ws2 "2"
|
||||
set $ws3 "3"
|
||||
set $ws4 "4"
|
||||
set $ws5 "5"
|
||||
set $ws6 "6"
|
||||
set $ws7 "7"
|
||||
set $ws8 "8"
|
||||
set $ws9 "9"
|
||||
set $ws10 "10"
|
||||
|
||||
# switch to workspace
|
||||
bindsym $mod+1 workspace number $ws1
|
||||
bindsym $mod+2 workspace number $ws2
|
||||
bindsym $mod+3 workspace number $ws3
|
||||
bindsym $mod+4 workspace number $ws4
|
||||
bindsym $mod+5 workspace number $ws5
|
||||
bindsym $mod+6 workspace number $ws6
|
||||
bindsym $mod+7 workspace number $ws7
|
||||
bindsym $mod+8 workspace number $ws8
|
||||
bindsym $mod+9 workspace number $ws9
|
||||
bindsym $mod+0 workspace number $ws10
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
||||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
||||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
||||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
||||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
||||
bindsym $mod+Shift+6 move container to workspace number $ws6
|
||||
bindsym $mod+Shift+7 move container to workspace number $ws7
|
||||
bindsym $mod+Shift+8 move container to workspace number $ws8
|
||||
bindsym $mod+Shift+9 move container to workspace number $ws9
|
||||
bindsym $mod+Shift+0 move container to workspace number $ws10
|
||||
|
||||
# reload the configuration file
|
||||
bindsym $mod+Shift+c reload
|
||||
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
||||
bindsym $mod+Shift+r restart
|
||||
# exit i3 (logs you out of your X session)
|
||||
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
|
||||
|
||||
# resize window (you can also use the mouse for that)
|
||||
mode "resize" {
|
||||
# These bindings trigger as soon as you enter the resize mode
|
||||
|
||||
# same bindings, but for the arrow keys
|
||||
bindsym Left resize shrink width 5 px or 5 ppt
|
||||
bindsym Down resize grow height 5 px or 5 ppt
|
||||
bindsym Up resize shrink height 5 px or 5 ppt
|
||||
bindsym Right resize grow width 5 px or 5 ppt
|
||||
|
||||
# back to normal: Enter or Escape
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
bindsym $mod+r mode "default"
|
||||
}
|
||||
|
||||
bindsym $mod+r mode "resize"
|
||||
|
||||
|
||||
#
|
||||
# Status Bar:
|
||||
#
|
||||
exec_always --no-startup-id ~/.config/polybar/launch.sh
|
||||
|
||||
# class border backgr. text indicator child_border
|
||||
client.urgent #000000 #000000 #ffffff #000000 #000000
|
||||
client.placeholder #000000 #000000 #ffffff #000000 #000000
|
||||
client.background #ffffff
|
||||
client.focused #343b58 #343b58 #c0caf5 #343b58 #343b58
|
||||
client.focused_inactive #16161d #16161d #c0caf5 #16161d #16161d
|
||||
client.unfocused #16161d #16161d #c0caf5 #16161d #16161d
|
||||
|
||||
|
||||
########################################################################
|
||||
########################################################################
|
||||
####
|
||||
#### Workplaces layout
|
||||
####
|
||||
########################################################################
|
||||
########################################################################
|
||||
|
||||
#exec --no-startup-id "i3-msg 'workspace 1; exec ghostty'"
|
||||
|
||||
########################################################################
|
||||
########################################################################
|
||||
####
|
||||
#### Floated windows
|
||||
####
|
||||
########################################################################
|
||||
########################################################################
|
||||
|
||||
for_window [title="Calculator"] floating enable
|
||||
for_window [title="Timer"] floating enable
|
||||
for_window [class="^.*"] border pixel 1
|
||||
for_window [class="librewolf"] border none
|
||||
for_window [class="brave"] border none
|
||||
for_window [class="ghostty"] border none
|
||||
for_window [class="UpNote"] border none
|
||||
for_window [class="mpv"] floating enable
|
||||
for_window [class="imv"] floating enable
|
||||
for_window [class="zenity"] floating enable
|
||||
for_window [class="cachyos-welcome"] floating enable
|
||||
|
||||
|
||||
########################################################################
|
||||
########################################################################
|
||||
####
|
||||
#### HOTKEYS
|
||||
####
|
||||
########################################################################
|
||||
########################################################################
|
||||
|
||||
|
||||
bindsym XF86AudioRaiseVolume exec "pamixer -ui 3 && pamixer --get-volume > ~/.local/tmp/xobpipe"
|
||||
bindsym XF86AudioLowerVolume exec "pamixer -ud 3 && pamixer --get-volume > ~/.local/tmp/xobpipe"
|
||||
## mute sound
|
||||
bindsym XF86AudioMute exec "amixer sset Master toggle | sed -En '/\[on\]/ s/.*\[([0-9]+)%\].*/\1/ p; /\[off\]/ s/.*/0/p' | head -1 > ~/.local/tmp/xobpipe"
|
||||
# Pulse Audio controls
|
||||
#bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% #increase sound volume
|
||||
#bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% #decrease sound volume
|
||||
#bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound
|
||||
|
||||
# Sreen brightness controls
|
||||
bindsym XF86MonBrightnessUp exec --no-startup-id "brightnessctl set +5%"
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id "brightnessctl set 5%-"
|
||||
|
||||
#bindsym $mod+Shift+p exec gnome-calculator
|
||||
bindsym $mod+p exec flameshot gui
|
||||
|
||||
## This will switch the current layout to the 'us'.
|
||||
#bindsym $mod+l exec "setxkbmap -layout us && sleep 0.1 && setxkbmap -option grp:caps_toggle 'us,ru' -option grp_led:caps && sleep 0.1 && i3lock --blur 5"
|
||||
|
||||
## This keybind will lock the screen. The lockscreen.
|
||||
bindsym $mod+l exec "sleep 0.1 && i3lock --blur 5"
|
||||
|
||||
########################################################################
|
||||
########################################################################
|
||||
####
|
||||
#### AUTOLOAD
|
||||
####
|
||||
########################################################################
|
||||
########################################################################
|
||||
|
||||
## Here is a language switcher by pressing capslock button,
|
||||
## and the capslock functionality available by using shift+capslock.
|
||||
## Uncomment to enable 'us' to/from 'ru' switch. change to language(s) you prefer more.
|
||||
|
||||
#exec_always setxkbmap -option grp:caps_toggle "us,ru" -option "grp:caps_toggle,grp_led:caps"
|
||||
|
||||
exec xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --scale 1x1
|
||||
#exec xrandr --auto --output HDMI-1 --mode 1920x1080 --above HDMI-2
|
||||
|
||||
exec feh --bg-fill ~/.config/i3/nord01.png
|
||||
|
||||
exec --no-startup-id dunst
|
||||
exec --no-startup-id picom
|
||||
#exec --no-startup-id redshift
|
||||
#exec --no-startup-id dex -a -s /etc/xdg/autostart/:~/.config/autostart/
|
||||
#exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||
exec --no-startup-id pipewire
|
||||
exec --no-startup-id pipewire-pulse
|
||||
exec --no-startup-id wireplumber
|
||||
#
|
||||
#exec_always mkfifo /tmp/xobpipe && tail -f /tmp/xobpipe | xob -t 2170 & disown
|
||||
#exec ~/.i3/launch.sh
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 202 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 190 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 541 KiB |
Reference in New Issue
Block a user