1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- set $mod Mod1
- set $ws1 "Ƹ̵̡Ӝ̵̨̄Ʒ"
- set $ws2 "一"
- set $ws3 "二"
- set $ws4 "三"
- set $ws5 "四"
- set $ws6 "五"
- font pango:monospace 0
- exec --no-startup-id xrandr -o right
- exec --no-startup-id xsetroot -cursor_name left_ptr
- exec --no-startup-id xinput set-prop 8 "Coordinate Transformation Matrix" 0 1 0 -1 0 1 0 0 1
- exec --no-startup-id xwallpaper --zoom ~/Pictures/(yourpicturehere).png
- exec --no-startup-id xautolock -time 5 -locker "i3lock -i ~/Pictures/(yourpicturehere).png -n" &
- exec --no-startup-id i3-msg 'workspace $ws1; exec urxvt'
- # border backgr. text indicator child_border
- client.focused #FF84B6 #000000 #ffffff #FF84B6 #FF84B6
- client.focused_inactive #333333 #5f676a #ffffff #484e50 #5f676a
- client.unfocused #BA1743 #222222 #888888 #BA1743 #BA1743
- client.urgent #2f343a #900000 #ffffff #900000 #900000
- client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c
- client.background #460020
- set $refresh_i3status killall -SIGUSR1 i3status
- bindsym --release XF86_PowerOff exec --no-startup-id "sh /home/(yourusernamehere)/.config/i3/power.sh"
- bindsym $mod+Return exec urxvt
- bindsym $mod+x kill
- bindsym $mod+space exec "dmenu_run -p 'Run:'"
- bindsym $mod+1 workspace $ws1
- bindsym $mod+2 workspace $ws2
- bindsym $mod+3 workspace $ws3
- bindsym $mod+4 workspace $ws4
- bindsym $mod+5 workspace $ws5
- bindsym $mod+6 workspace $ws6
- bindsym $mod+Shift+1 move container to workspace $ws1
- bindsym $mod+Shift+2 move container to workspace $ws2
- bindsym $mod+Shift+3 move container to workspace $ws3
- bindsym $mod+Shift+4 move container to workspace $ws4
- bindsym $mod+Shift+5 move container to workspace $ws5
- bindsym $mod+Shift+6 move container to workspace $ws6
- bindsym $mod+Shift+c reload
- bindsym $mod+Shift+r restart
- bindsym $mod+Shift+e exit
- bar {
- #border #bg #text
- colors {
- background #000000 #000000 #ffffff
- focused_workspace #FF84B6 #FF84B6 #000000
- active_workspace #FF84B6 #FF84B6 #000000
- inactive_workspace #BA1743 #BA1743 #ffffff
- urgent_workspace #2F343A #900000 #000000
- binding_mode #2F343A #900000 #000000
- }
- position top
- font pango:Source Han Sans JP 38
- status_command /home/(yourusernamehere)/.config/i3/bat.sh
- }
|