poetician

i3 Bumblebee-status | NVMe 0n1 | Avocado

Apr 6th, 2021 (edited)
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.07 KB | None | 0 0
  1. #ᰜᰜᰜ ㄗ 𑁣 𑁗 ፖ ༑ ᙅ ༑ ₳ ⴄ 𓁿Ꝣᰃ𑊸 ᰜ ᰜ ᗿᙀጣЪ𐔹ᙦβᗕ𑄺-ⴝㆤᎯէᙀᎦЪДⴽ ᕮᗤ𐏒𐌕𐏒𐀏ꤚ ᰜᰜᰜ#
  2. #ᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜᰜ#
  3.  
  4. # https://thenextpoetician.blogspot.com/ # https://pastebin.com/u/poetician
  5.  
  6. # Developer URL:https://i3wm.org/
  7. # Version: 4.19.1 (2021-02-01) © 2009 Michael Stapelberg and contributors.
  8.  
  9. # Derived in part from ArcoLinux default:
  10. # https://arcolinux.info/ # https://github.com/arcolinux
  11.  
  12. #ᰜᰜᰜᰜᰜᰜ Key Names ᰜᰜᰜᰜᰜᰜ#
  13.  
  14. # Mod = Super key / Mod4 # Ctrl = Ctrl key # Mod1 = Alt key
  15. # Shift = Shift key # Return = Enter or Return key # Escape = Escape key
  16. # Pause = Pause key # Print = Print key # Tab = Tab key
  17.  
  18. # Define the $mod variable key
  19. set $mod Mod4
  20.  
  21. # Define the movement keys
  22. set $left h
  23. set $down j
  24. set $up k
  25. set $right l
  26.  
  27. #ᰜᰜᰜᰜᰜᰜ Dual Monitor Setup ᰜᰜᰜᰜᰜᰜ#
  28.  
  29. set $Screen1 HDMI-A-0
  30. set $Screen2 DVI-D-0
  31.  
  32. workspace 1 output $Screen1
  33. workspace 2 output $Screen1
  34. workspace 3 output $Screen1
  35. workspace 4 output $Screen1
  36. workspace 5 output $Screen1
  37. workspace 6 output $Screen1
  38. workspace 7 output $Screen1
  39. workspace 8 output $Screen2
  40. workspace 9 output $Screen2
  41. workspace 10 output $Screen2
  42. workspace 11 output $Screen2
  43. workspace 12 output $Screen2
  44. workspace 13 output $Screen2
  45. workspace 14 output $Screen2
  46. workspace 15 output $Screen2
  47.  
  48. # Use arandr for the configuration
  49. exec xrandr --no-startup-id --output HDMI-A-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DVI-D-0 -mode 1920x1080 --pos 1920x0 --rotate normal
  50.  
  51. #ᰜᰜᰜᰜᰜᰜ Reload Changed Configuration ᰜᰜᰜᰜᰜᰜ#
  52.  
  53. # Restart i3 in place (preserves the layout/session, can be used to upgrade i3)
  54. bindsym $mod+Shift+r restart
  55.  
  56. # Reload the configuration file (problematic with some apps; logging out/in is preferred)
  57. bindsym $mod+Shift+c reload
  58.  
  59. #ᰜᰜᰜᰜᰜᰜ Stop Applications ᰜᰜᰜᰜᰜᰜ#
  60.  
  61. # Kill focused window
  62. bindsym $mod+q kill
  63.  
  64. # Xkill focused window
  65. bindsym --release $mod+Escape exec xkill
  66.  
  67. # Hibernate, Lockscreen, Logout, Reboot, Suspend
  68. bindsym $mod+x exec arcolinux-logout
  69.  
  70. #ᰜᰜᰜᰜᰜᰜ Resize Windows ᰜᰜᰜᰜᰜᰜ#
  71. # Resizing windows with keyboard only: https://unix.stackexchange.com/q/255344/150597
  72.  
  73. # Resizing by 1
  74. bindsym $mod+Ctrl+Right resize grow width 1 px or 1 ppt
  75. bindsym $mod+Ctrl+Up resize shrink height 1 px or 1 ppt
  76. bindsym $mod+Ctrl+Down resize grow height 1 px or 1 ppt
  77. bindsym $mod+Ctrl+Left resize shrink width 1 px or 1 ppt
  78.  
  79. #ᰜᰜᰜᰜᰜᰜ Resize i3 Gaps ᰜᰜᰜᰜᰜᰜ#
  80. # gaps inner|outer|horizontal|vertical|top|right|bottom|left current|all set|plus|minus|toggle
  81.  
  82. bindsym Ctrl+Shift+a gaps outer current toggle 40
  83. bindsym Ctrl+Shift+s gaps outer current plus 10
  84. bindsym Ctrl+Shift+d gaps outer current minus 10
  85. bindsym Ctrl+Shift+w gaps outer all set 10
  86. bindsym Ctrl+Shift+e gaps outer all set 20
  87. bindsym Ctrl+Shift+r gaps outer all set 40
  88. bindsym Ctrl+Shift+t gaps outer all set 60
  89.  
  90. # popup_during_fullscreen smart|ignore|leave_fullscreen
  91. popup_during_fullscreen leave_fullscreen
  92.  
  93. #############################################
  94. #ᰜᰜᰜᰜᰜᰜ Navigating Containers ᰜᰜᰜᰜᰜᰜ#
  95.  
  96. # Use mouse+$mod to drag floating windows to their new position
  97. floating_modifier $mod
  98.  
  99. # Toggle Tiling / Floating
  100. bindsym Ctrl+space floating toggle
  101.  
  102. # Change Focus
  103. bindsym $mod+Left focus left
  104. bindsym $mod+Down focus down
  105. bindsym $mod+Up focus up
  106. bindsym $mod+Right focus right
  107.  
  108. bindsym $mod+h focus left
  109. bindsym $mod+j focus down
  110. bindsym $mod+k focus up
  111. bindsym $mod+l focus right
  112.  
  113. # Move Focused Window
  114. bindsym $mod+Shift+Left move left 1px
  115. bindsym $mod+Shift+Down move down 1px
  116. bindsym $mod+Shift+Up move up 1px
  117. bindsym $mod+Shift+Right move right 1px
  118.  
  119. bindsym $mod+Mod1+Right move right 5 px
  120. bindsym $mod+Mod1+Up move up 5 px
  121. bindsym $mod+Mod1+Down move down 5 px
  122. bindsym $mod+Mod1+Left moveleft 5 px
  123.  
  124. #############################################
  125. #ᰜᰜᰜᰜᰜᰜ Navigating Workspaces ᰜᰜᰜᰜᰜᰜ#
  126.  
  127. # Navigate to Next / Previous Workspace
  128. bindsym Mod1+Shift+Tab workspace prev
  129. bindsym Mod1+Tab workspace next
  130. bindsym Mod1+Ctrl+Left workspace prev
  131. bindsym Mod1+Ctrl+Right workspace next
  132. bindsym $mod+Tab workspace back_and_forth
  133.  
  134. # Switch to workspace with urgent window automatically
  135. for_window [urgent=latest] focus
  136.  
  137. # Switch back to previous workspace by pressing the same keybinding used to switch from it
  138. workspace_auto_back_and_forth yes
  139.  
  140. #########################################
  141. #ᰜᰜᰜᰜᰜᰜ Tiling Parameters ᰜᰜᰜᰜᰜᰜ#
  142.  
  143. # workspace_layout default|stacking|tabbed
  144. workspace_layout default
  145.  
  146. # orientation for new workspaces
  147. default_orientation horizontal
  148.  
  149. # split in horizontal orientation
  150. # split in vertical orientation
  151.  
  152. # enter fullscreen mode for the focused container
  153. bindsym $mod+f fullscreen toggle
  154.  
  155. # change container layout (stacked, tabbed, toggle split)
  156. ## Not used
  157.  
  158. # change focus between tiling / floating windows
  159. bindsym $mod+space focus mode_toggle
  160.  
  161. # focus the parent container
  162. bindsym $mod+a focus parent
  163. # focus the child "HHVH"
  164. bindsym $mod+d focus child
  165.  
  166. #####################################################
  167. #ᰜᰜᰜᰜᰜᰜ Workspace Switching Functions ᰜᰜᰜᰜᰜᰜ#
  168.  
  169. # Switch to workspace
  170. bindsym $mod+1 workspace $ws1
  171. bindsym $mod+2 workspace $ws2
  172. bindsym $mod+3 workspace $ws3
  173. bindsym $mod+4 workspace $ws4
  174. bindsym $mod+5 workspace $ws5
  175. bindsym $mod+6 workspace $ws6
  176. bindsym $mod+7 workspace $ws7
  177. bindsym $mod+8 workspace $ws8
  178. bindsym $mod+9 workspace $ws9
  179. bindsym $mod+0 workspace $ws10
  180. bindsym $mod+minus workspace $ws11
  181. bindsym $mod+equal workspace $ws12
  182. bindsym $mod+bracketleft workspace $ws13
  183. bindsym $mod+bracketright workspace $ws14
  184. bindsym $mod+grave workspace $ws15
  185.  
  186. # Move focused container to workspace
  187. bindsym $mod+Shift+1 move container to workspace $ws1; workspace $ws1
  188. bindsym $mod+Shift+2 move container to workspace $ws2; workspace $ws2
  189. bindsym $mod+Shift+3 move container to workspace $ws3; workspace $ws3
  190. bindsym $mod+Shift+4 move container to workspace $ws4; workspace $ws4
  191. bindsym $mod+Shift+5 move container to workspace $ws5; workspace $ws5
  192. bindsym $mod+Shift+6 move container to workspace $ws6; workspace $ws6
  193. bindsym $mod+Shift+7 move container to workspace $ws7; workspace $ws7
  194. bindsym $mod+Shift+8 move container to workspace $ws8; workspace $ws8
  195. bindsym $mod+Shift+9 move container to workspace $ws9; workspace $ws9
  196. bindsym $mod+Shift+0 move container to workspace $ws10; workspace $ws10
  197. bindsym $mod+Shift+minus move container to workspace $ws11; workspace $ws11
  198. bindsym $mod+Shift+equal move container to workspace $ws12; workspace $ws12
  199. bindsym $mod+Shift+bracketleft move container to workspace $ws13; workspace $ws13
  200. bindsym $mod+Shift+bracketright move container to workspace $ws14; workspace $ws14
  201. bindsym $mod+Shift+grave move container to workspace $ws15; workspace $ws15
  202.  
  203. ##########################################
  204. #ᰜᰜᰜᰜᰜᰜ Application focus ᰜᰜ ᰜᰜᰜᰜ#
  205.  
  206. focus_on_window_activation smart
  207.  
  208. ####################################################
  209. #ᰜᰜᰜᰜᰜᰜ Bar and Workspace Appearance ᰜᰜᰜᰜᰜᰜ#
  210.  
  211. #ᰜᰜᰜᰜᰜᰜ Bar Toggle ᰜᰜᰜᰜᰜᰜ#
  212. # Bar toggle, hide or show
  213. bindsym $mod+b bar mode invisible
  214. bindsym $mod+m bar mode dock
  215.  
  216. bar {
  217. height 28
  218. workspace_buttons yes
  219. font pango:Bauhaus 12, FontAwesome 12
  220. i3bar_command i3bar -t
  221. tray_output HDMI-A-0
  222. tray_padding 2
  223. position top
  224.  
  225. # OPTION 1 : Bumblebee-status
  226. # https://github.com/tobi-wan-kenobi/bumblebee-status
  227. status_command ~/.config/bumblebee-status/bumblebee-status \
  228. -m network_traffic disk cpu \
  229. -m sun -p cpu.lat=## cpu.lat=-## -m redshift \
  230. -m weather -p weather.location=####### weather.showminmax=true \
  231. -m uptime datetime -p datetime.format=" %c " \
  232. -m shortcut -p shortcut.cmds="alacritty;alacritty -e bpytop" shortcut.labels="term;bpytop" \
  233. -t avocado
  234.  
  235. # OPTION 2 : i3status
  236.  
  237. #status_command i3status
  238. #status_command i3status -c ~/.config/i3/i3status.conf
  239.  
  240. # OPTION 3 : i3blocks
  241. # https://github.com/vivien/i3blocks
  242.  
  243. #status_command i3blocks
  244. #status_command i3blocks -c ~/.config/i3/i3blocks.conf
  245. #status_command i3blocks -c ~/.config/i3/i3blocks-rainbow.conf
  246. #status_command i3blocks -c ~/.config/i3/i3blocks-original.conf
  247. #status_command i3blocks -c ~/.config/i3/i3blocks-awesome.conf
  248.  
  249. # OPTION 4 : conky
  250. # https://i3wm.org/docs/user-contributed/conky-i3bar.html
  251.  
  252. #status_command ~/.config/i3/start-conky-i3statusbar.sh
  253.  
  254. ##START THEMING BAR
  255. #Theme name : avocado
  256.  
  257. # i3 bar colors
  258.  
  259. colors {
  260. background #a3bf4599
  261. statusline #a3bf451a
  262. separator #74923a
  263.  
  264. # colorclass border background text
  265. focused_workspace #231709 #a3bf45 #231709
  266. active_workspace #231709 #d2e190 #231709
  267. inactive_workspace #231709 #74923a #231709
  268. urgent_workspace #231709 #617b30 #231709
  269. }
  270. }
  271.  
  272. bar {
  273. height 22
  274. workspace_buttons no
  275. font pango:Bauhaus 12, FontAwesome 12
  276. i3bar_command i3bar
  277. output HDMI-A-0
  278. tray_output none
  279. position bottom
  280.  
  281. status_command ~/.config/bumblebee-status/bumblebee-status \
  282. -m hostname kernel load memory sensors2 \
  283. -m battery-upower indicator pasink pasource xrandr todo spacer \
  284. -t avocado
  285.  
  286. colors {
  287. background #617b30
  288. statusline #617b30
  289. separator #00000000
  290. }
  291. }
  292.  
  293. ### Usable modules: amixer battery layout nic pacman pasink pasource ping progress sensors system title traffic arch-update "-p arch-update.left-click=" xkcd
  294. ### Problematic modules: dunst hddtemp playerctl smartstatus
  295.  
  296. # Option 5: Polybar
  297. # Comment out the Bar section and conky, and remove hashtag in the next line to load Polybar; log back in to see the change.
  298. # exec_always --no-startup-id ~/.config/polybar/launch.sh &
  299.  
  300. ##STOP THEMING BAR
  301.  
  302. ##START THEMING WM
  303. # Theme name : avocado
  304.  
  305. # Window color settings
  306. # class border background text indicator
  307. client.focused #231709 #617b30 #74923a #d2e190
  308. client.unfocused #231709 #74923a #74923a #d2e190
  309. client.focused_inactive #231709 #d2e190 #74923a #d2e190
  310. client.placeholder #231709 #617b30 #74923a
  311. client.urgent #d2e190 #d2e190 #74923a #d2e190
  312.  
  313. client.background #242424
  314.  
  315. ##STOP THEMING WM
  316.  
  317. ###################################################
  318. #ᰜᰜᰜᰜᰜᰜ Applications and Directives ᰜᰜᰜᰜᰜᰜ#
  319.  
  320. set $ws1 "1"
  321. assign [class="firefox"] $ws1
  322. exec --no-startup-id firefox
  323. bindsym $mod+F1 exec firefox
  324.  
  325. set $ws2 "2"
  326. assign [class="Arcolinux-tweak-tool.py|Blender|com-eteks-sweethome3d-SweetHome3D"] $ws2
  327. for_window [class="Arcolinux-tweak-tool.py"]focus, floating enable, resize set 800 800, move position 2480 140
  328. bindsym $mod+Ctrl+e exec arcolinux-tweak-tool
  329. bindsym $mod+Ctrl+b exec blender
  330. bindsym $mod+shift+i exec com-eteks-sweethome3d-SweetHome3D
  331.  
  332. set $ws3 "3"
  333. assign [class="Cherrytree|Xfce4-dict"] $ws3
  334. for_window [class="Cherrytree"]focus, floating enable, resize set 1100 960, move position 40 60
  335. exec flatpak run com.giuspen.cherrytree
  336. bindsym $mod+F3 exec flatpak run com.giuspen.cherrytree
  337. for_window [class="Xfce4-dict"]focus, floating enable, resize set 480 960, move position 1205 70
  338. bindsym $mod+Ctrl+d exec xfce4-dict
  339.  
  340. set $ws4 "4"
  341. assign [class="libreoffice"] $ws4
  342. for_window [class="libreoffice"]focus, floating enable, resize set 1360 1020, move position 280 32
  343. exec libreoffice
  344. bindsym $mod+F4 exec libreoffice
  345.  
  346. set $ws5 "5"
  347. assign [class="kdenlive|Olive"] $ws5
  348. for_window [class="kdenlive|Olive"]focus
  349. bindsym $mod+F5 exec kdenlive
  350. bindsym $mod+Shift+o exec olive-editor
  351.  
  352. set $ws6 "6"
  353. assign [class="Darktable|Gimp-2.10"] $ws6
  354. for_window [class="Darktable|Gimp-2.10"]focus
  355. bindsym $mod+Shift+t exec darktable
  356. bindsym $mod+F6 exec gimp-2.10
  357. for_window [instance="script-fu"] border normal
  358. for_window [title="Copying"] floating enable
  359. for_window [title="Deleting"] floating enable
  360. for_window [title="Moving"] floating enable
  361. for_window [window_role="^gimp-toolbox-color-dialog$"] floating enable
  362. for_window [window_role="pop-up"] floating enable
  363. for_window [window_role="^Preferences$"] floating enable
  364. for_window [window_role="setup"] floating enable
  365.  
  366. set $ws7 "7"
  367. assign [class="Google Earth Pro"] $ws7
  368. for_window [class="Google Earth Pro"]focus
  369. bindsym $mod+e exec --no-startup-id google-earth-pro
  370.  
  371. set $ws8 "8"
  372. assign [class="Pystopwatch|vlc|Xscreensaver-demo"] $ws8
  373. for_window [class="Pystopwatch"] focus, floating enable, move position 2000 80, resize set 300 100
  374. exec pystopwatch
  375. for_window [class="vlc"] floating enable, move position 3220 180, resize set 520 100
  376. exec vlc
  377. bindsym $mod+v exec vlc
  378. for_window [class="Xscreensaver-demo"] floating enable, move position 2040 510, resize set 1112 530
  379. exec_always --no-startup-id xscreensaver
  380. exec --no-startup-id xscreensaver-demo
  381. bindsym $mod+Ctrl+x exec xscreensaver-demo
  382.  
  383. set $ws9 "9"
  384. assign [class="Meld"] $ws9
  385. for_window [class="Meld"]focus, floating enable, resize set 1904 1040, move position 1928 32
  386. exec --no-startup-id meld
  387. bindsym $mod+F9 exec meld
  388.  
  389. set $ws10 "10"
  390. assign [class="VirtualBox|VirtualBox Manager|VirtualBox Machine"] $ws10
  391. for_window [class="VirtualBox Machine|VirtualBox Manager"]focus, floating disable
  392. for_window [class="VirtualBox"] move position 1920 480
  393. exec virtualbox manager
  394. bindsym $mod+F10 exec virtualbox manager
  395.  
  396. set $ws11 "11"
  397. assign [class="Atom|Nemo|Thunar|mpv"] $ws11
  398. for_window [class="Atom|Nemo|Thunar"]focus
  399. for_window [class="Nemo-terminal-prefs|mpv"]focus, floating enable, resize set 1280 854, move position center
  400. bindsym $mod+F2 exec atom ~/.config/i3/config
  401. bindsym $mod+Shift+Return exec nemo
  402. exec --no-startup-id thunar
  403. bindsym $mod+t exec thunar
  404.  
  405. set $ws12 "12"
  406. assign [class="qBittorrent"] $ws12
  407. for_window [class="qBittorrent"] floating enable, resize set 1400 800, move position 2180 120
  408. bindsym $mod+F12 exec qbittorrent
  409. exec qbittorrent
  410.  
  411. set $ws13 "13"
  412. assign [class="Filezilla"] $ws13
  413. for_window [class="Filezilla"] focus
  414. bindsym $mod+z exec filezilla
  415.  
  416. set $ws14 "14"
  417. assign [class="Gcolor2|Lxappearance|Oomox|__main__.py"] $ws14
  418. for_window [class="Gcolor2"]focus, move position 3220 40
  419. for_window [class="Oomox"] focus, floating enable, resize set 1260 990, move position 1925 40
  420. for_window [class="Lxappearance"] focus, floating enable, resize set 880 440, move position 2900 610
  421. bindsym $mod+Shift+g exec gcolor2
  422. bindsym $mod+Ctrl+a exec lxappearance
  423. bindsym $mod+o exec oomox-gui
  424.  
  425. set $ws15 "15"
  426. assign [class="discord"] $ws15
  427. for_window [class="discord"] floating enable, move position 2280 50, resize set 1200 960
  428. exec discord
  429.  
  430. #############################################
  431. #ᰜᰜᰜᰜᰜᰜ Application Launching ᰜᰜᰜᰜᰜᰜ#
  432.  
  433. set $rofi exec rofi -show-icons -lines 9 -columns 2 -eh 1 -padding 100 -width 60 -font "Federation 11"
  434. # Start drun Mode
  435. bindsym $mod+r $rofi -show drun
  436. # Start Rofi Combi Mode
  437. bindsym $mod+Ctrl+c $rofi -show combi
  438. # Start Rofi Window Mode
  439. bindsym $mod+w $rofi -show window
  440. # Start Rofi-Shortcuts
  441. bindsym $mod+Ctrl+r exec ~/.config/rofi/rofi-shortcuts/rofi-shortcuts.sh
  442. # Start Rofi Theme Selector
  443. bindsym Ctrl+mod1+r exec --no-startup-id rofi-theme-selector
  444.  
  445. # Enable/disable logging
  446. bindsym $mod+u debuglog toggle
  447.  
  448. #bindsym $mod+y
  449.  
  450. for_window [class="Alacritty"] floating enable, resize set 760 700, move position 1082 306
  451. bindsym Mod1+comma [class="Alacritty"] scratchpad show
  452. bindsym $mod+Return exec alacritty
  453.  
  454. bindsym $mod+Ctrl+f exec catfish; focus
  455.  
  456. for_window [class="flameshot"] floating enable, resize set 730 480
  457. bindsym $mod+g exec flameshot
  458.  
  459. for_window [class="Gnome-calendar"] resize set 844 800, move position 24 54
  460. for_window [class="Org.gnome.clocks"] floating enable, resize set 350 477
  461. for_window [class="Gnome-logs|Gnome-system-monitor"] floating enable, resize set 840 840, move position 2460 100
  462. # bindsym $mod+Ctrl+a exec gnome-calendar
  463. bindsym $mod+Ctrl+h exec gnome-clocks
  464. bindsym $mod+Ctrl+j exec gnome-logs
  465.  
  466. bindsym $mod+Ctrl+i exec gvim
  467. bindsym $mod+shift+h exec handbrake
  468.  
  469. for_window [class="Kvantum Manager"] floating enable
  470. #bindsym $mod+k exec kvantummanager
  471.  
  472. for_window [class="Mate-system-monitor"] floating enable, resize set 800 987, move position 560 48
  473. bindsym $mod+Ctrl+m exec mate-system-monitor
  474.  
  475. bindsym $mod+n exec nitrogen
  476. for_window [class="Nitrogen"] floating enable, resize set 833 883, move position 1047 137
  477.  
  478. bindsym Ctrl+mod1+o exec --no-startup-id ~/.config/i3/scripts/picom-toggle.sh
  479.  
  480. bindsym $mod+Ctrl+n exec xfce4-notes
  481.  
  482. for_window [class="Pamac-manager"] floating enable, resize set 720 540, move position 600 80
  483. bindsym Ctrl+mod1+g exec --no-startup-id pamac-manager
  484.  
  485. bindsym $mod+p exec putty
  486.  
  487. for_window [class="qt5ct"] floating enable, resize set 900 720, move position 510 160
  488. bindsym $mod+Ctrl+q exec qt5ct
  489.  
  490. bindsym Shift+Print exec --no-startup-id "flameshot gui -p ~/Images/Flameshot"
  491. bindsym Print exec --no-startup-id scrot ' -%Y-%m-%d-%s_$wx$h.jpg' -e 'mv $f $$(xdg-user-dir IMAGES)'
  492. bindsym Ctrl+Print exec --no-startup-id xfce4-screenshooter
  493.  
  494. for_window [class="Xfce4-appfinder"] floating enable
  495. bindsym $mod+Ctrl+l exec --no-startup-id xfce4-appfinder
  496. bindsym Ctrl+mod1+m exec --no-startup-id xfce4-settings-manager
  497. bindsym Ctrl+Shift+Escape exec --no-startup-id xfce4-taskmanager, focus
  498.  
  499. #ᰜᰜᰜᰜᰜᰜ Loading Applications at Startup ᰜᰜᰜᰜᰜᰜ#
  500.  
  501. #xmodmap -e "keysym BackSpace = Delete" -e "keysym Delete = BackSpace"
  502. exec setxkbmap -option caps:swapescape
  503. exec nitrogen --restore
  504. exec killall picom &&
  505. exec_always --no-startup-id picom --config ~/.config/i3/picom.conf
  506. exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
  507. #exec_always --no-startup-id ~/.config/polybar/launch.sh &
  508. exec --no-startup-id /usr/lib/geoclue-2.0/demos/agent
  509. exec killall redshift &&
  510. exec redshift &
  511. exec_always --no-startup-id unclutter --timeout 2
  512. exec --no-startup-id xfce4-power-manager &
  513. exec --no-startup-id /usr/lib/xfce4/notifyd/xfce4-notifyd &
  514.  
  515. #ᰜᰜᰜᰜᰜᰜ Tray Applications ᰜᰜᰜᰜᰜᰜ#
  516.  
  517. # Network
  518. exec --no-startup-id nm-applet
  519. # Parcellite
  520. exec --no-startup-id parcellite
  521. # Workrave
  522. for_window [class="Workrave"] focus
  523. exec --no-startup-id workrave
  524. # Volume
  525. exec --no-startup-id volumeicon
  526. # Updater
  527. exec --no-startup-id pamac-tray
  528. # Dropbox
  529. exec --no-startup-id dropbox start
  530. # MEGA
  531. exec --no-startup-id megasync
  532.  
  533. #ᰜᰜᰜᰜᰜᰜ Floating or Tiled ᰜᰜᰜᰜᰜᰜ#
  534.  
  535. for_window [class="Dialog|Engrampa|File-roller|Font-manager"] floating enable move position 180 80
  536. for_window [class="Galculator|Gnome-calendar|Gnome-disks|^Gnome-font-viewer$"] floating enable
  537. for_window [class="GParted|^Gpick$|Grub-customizer"] floating enable
  538. for_window [class="System-config-printer.py|Termite"] floating enable
  539. for_window [class="Xfce4-settings-manager|Xfce4-taskmanager"] floating enable
  540.  
  541. #ᰜᰜᰜᰜᰜᰜ Scratchpad ᰜᰜᰜᰜᰜᰜ#
  542.  
  543. # move the currently focused window to the scratchpad
  544. bindsym Mod1+Shift+slash move scratchpad
  545. bindsym Mod1+slash scratchpad show
  546.  
  547. for_window [class="Gucharmap"] move scratchpad, resize set 800 600, move position 10 436
  548. bindsym Mod1+period [class="Gucharmap"] scratchpad show
  549. bindsym Ctrl+Mod1+period exec gucharmap
  550.  
  551. bindsym $mod+shift+a [class="Audio Recorder"] scratchpad show
  552. bindsym $mod+s exec simplescreenrecorder
  553. bindsym $mod+shift+s [class="SimpleScreenRecorder"] scratchpad show
  554. bindsym $mod+shift+p [class="kcolorchooser"] scratchpad show
  555.  
  556. ######################################
  557. #ᰜᰜᰜᰜᰜᰜ Border Ctrl ᰜᰜᰜᰜᰜᰜ#
  558.  
  559. # default_border normal | none | pixel
  560. default_border none
  561. # default_floating_border normal | none| pixel
  562. default_floating_border none
  563.  
  564. # hide_edge_borders none|vertical|horizontal|both|smart
  565. hide_edge_borders none
  566. bindsym $mod+shift+b exec --no-startup-id i3-msg border toggle
  567.  
  568. # changing border style
  569. ## Not used
  570.  
  571. new_window none
  572. # new_window normal | new_window none | pixel
  573.  
  574. new_float pixel 1
  575. # new_float normal | none | pixel
  576.  
  577. #ᰜᰜᰜᰜᰜᰜ i3-Next-Gaps ᰜᰜᰜᰜᰜᰜ#
  578. # Settings for I3 next gaps https://github.com/Airblader/i3/tree/gaps-next
  579.  
  580. #for_window [class="^.*"] pixel 4
  581. gaps inner 12
  582. gaps outer 8
  583. smart_gaps on
  584. smart_borders on
  585.  
  586. ##############################################
  587. #ᰜᰜᰜᰜᰜᰜ Variety for Wallpapers ᰜᰜᰜᰜᰜᰜ#
  588.  
  589. # exec --no-startup-id variety
  590. for_window [class="Variety"] floating enable
  591. for_window [instance="Variety Preferences"] floating enable
  592.  
  593. # trash wallpaper
  594. bindsym mod1+t exec --no-startup-id variety -t
  595. # next wallpaper
  596. bindsym mod1+n exec --no-startup-id variety -n
  597. bindsym mod1+Right exec --no-startup-id variety -n
  598. # previous wallpaper
  599. bindsym mod1+p exec --no-startup-id variety -p
  600. bindsym mod1+Left exec --no-startup-id variety -p
  601. # favorite wallpaper
  602. bindsym mod1+f exec --no-startup-id variety -f
  603. # pause wallpaper
  604. bindsym mod1+Up exec --no-startup-id variety --pause
  605. # resume wallpaper
  606. bindsym mod1+Down exec --no-startup-id variety --resume
  607.  
  608. #ᰜᰜᰜᰜᰜᰜ Variety with Pywal ᰜᰜᰜᰜᰜᰜ#
  609.  
  610. # next wallpaper
  611. bindsym mod1+Shift+n exec --no-startup-id variety -n && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  612. # previous wallpaper
  613. bindsym mod1+Shift+p exec --no-startup-id variety -p && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  614. # trash wallpaper
  615. bindsym mod1+Shift+t exec --no-startup-id variety -t && wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)&
  616. # update wallpaper
  617. bindsym mod1+Shift+u exec --no-startup-id wal -i $(cat $HOME/.config/variety/wallpaper/wallpaper.jpg.txt)
  618.  
  619. #ᰜᰜᰜᰜᰜᰜ The End - Now Start Again ᰜᰜᰜᰜᰜᰜ#
  620. #########################################################################################
  621.  
  622. # All these words are empty baskets
  623. # Carried to the market square
  624. # Trading truth and lies in barter
  625. # Warranting warn buyer beware
  626.  
  627. # All these words are reeds I wove
  628. # Taught to hold my pauper’s share
  629. # Show me yours before and after
  630. # Out in the open we may compare
  631.  
  632. # All these words are on the table
  633. # Yoked to folly the shell game starts
  634. # Trick the eye they who are able
  635. # Cunning those the same the heart
  636.  
  637. # All these words are fruits of labour
  638. # Bounty’s grace on harvest’s day
  639. # Test taste and judge the many flavours
  640. # Fill your need be on your way
  641.  
  642. # All these words so meet and proper
  643. # Morning meals served hot or cold
  644. # Savour meaning old sharecropper
  645. # Recall the stories you were told
  646.  
  647. # All these words are open caskets
  648. # Life goes on even nothing’s fair
  649. # Gather seeds for ever after
  650. # Till the breach sow to repair
  651.  
Add Comment
Please, Sign In to add comment