Remove legacy and X11 configs
This commit is contained in:
		
							
								
								
									
										119
									
								
								grobi/grobi.conf
									
									
									
									
									
								
							
							
						
						
									
										119
									
								
								grobi/grobi.conf
									
									
									
									
									
								
							| @@ -1,119 +0,0 @@ | ||||
| # vim:ft=yaml | ||||
|  | ||||
| # The commands listed in execute_after will be run after an output | ||||
| # configuration was changed. | ||||
| execute_after: | ||||
|   - ~/.fehbg | ||||
|  | ||||
| # if anything goes wrong (connection the X server died or some other error), | ||||
| # run these commands before exiting | ||||
| on_failure: | ||||
|   - xrandr --auto | ||||
|   - xset s on | ||||
|   - xset s 300 60 | ||||
|  | ||||
| # These are the rules grobi tries to match to the current output configuration. | ||||
| # The rules are evaluated top to bottom, the first matching rule is applied and | ||||
| # processing stops. | ||||
| # | ||||
| # The rules below are written for a typical Laptop in mind, which hase several | ||||
| # external connectors (HDMI2, HDMI3) in addition to the internal display | ||||
| # (LVDS1). It may even be placed in a Docking Station, which adds more outputs | ||||
| # that aren't present outside it. | ||||
| rules: | ||||
|     # I use a modified version of grobi available at https://github.com/rad4day/grobi | ||||
|     # which allows to specify a display rotation as ::<rotation>. | ||||
|     # This config will throw errors in default grobi! | ||||
|   - name: DELL | ||||
|     outputs_connected: | ||||
|       - DP-2-1-BNQ-30887-21573-BenQ GL2450H-ACB00126019 | ||||
|       - DP-2-2-BNQ-30887-21573-BenQ GL2450H-X4F00171019 | ||||
|       - DP-2-3-SAM-3953-1129860145-S34J55x-H4LT100404 | ||||
|     configure_row: | ||||
|       - DP-2-1@1920x1080::left | ||||
|       - DP-2-3@3440x1440 | ||||
|       - DP-2-2@1920x1080::right | ||||
|     # atomic instructs grobi to only call xrandr once and configure all the | ||||
|     # outputs. This does not always work with all graphic cards. | ||||
|     atomic: false | ||||
|     primary: DP-2-3 | ||||
|     execute_after: | ||||
|       - xset s on | ||||
|       - rfkill block wifi | ||||
|       - bluetoothctl power on | ||||
|       - xrandr --output DP-2-1 --set "Broadcast RGB" "Full" | ||||
|       - xrandr --output DP-2-2 --set "Broadcast RGB" "Full" | ||||
|       - systemctl --user start redshift-gtk.service | ||||
|       - /home/rad4day/.config/i3/scripts/ws-dock.sh | ||||
|  | ||||
|   - name: "Regus Office" | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|       - DP-2-DEL-41367-825642060-DELL S2721QS-FHP9M43 | ||||
|     configure_column: | ||||
|       - DP-2@3840x2160 | ||||
|       - eDP-1 | ||||
|     primary: DP-2 | ||||
|     atomic: false | ||||
|  | ||||
|   - name: "ATIS" | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|       - DP-1 | ||||
|     configure_column: | ||||
|       - DP-1@1920x1080 | ||||
|       - eDP-1 | ||||
|     primary: DP-1 | ||||
|     atomic: false | ||||
|  | ||||
|   - name: FSI | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|       - DP-4-2-GSM-22964-514483-24EB23-609NTFAF4483 | ||||
|       - DP-4-3-GSM-22964-279831-24EB23-305NDGL87831 | ||||
|     configure_row: | ||||
|       - DP-4-2@1920x1080 | ||||
|       - DP-4-3@1920x1080 | ||||
|       - eDP-1@2256x1504 | ||||
|     primary: DP4-3 | ||||
|     atomic: false | ||||
|  | ||||
|   - name: "ATIS-Horizontal" | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|       - DP-1 | ||||
|     configure_row: | ||||
|       - eDP-1 | ||||
|       - DP-1@1920x1080 | ||||
|     primary: DP-1 | ||||
|     atomic: false | ||||
|     execute_after: | ||||
|       - xset s on | ||||
|  | ||||
|   - name: "Mobile" | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|     configure_single: eDP-1 | ||||
|     primary: eDP-1 | ||||
|  | ||||
|   - name: "Presentation" | ||||
|     outputs_connected: | ||||
|       - eDP-1 | ||||
|       - DP-1 | ||||
|     configure_row: | ||||
|       - eDP-1 | ||||
|       - DP-1@1920x1200 | ||||
|     primary: eDP-1 | ||||
|     atomic: false | ||||
|     execute_after: | ||||
|       - xset s off | ||||
|       - systemctl --user stop redshift-gtk.service | ||||
|       - dunstctl set-paused true | ||||
|  | ||||
|  | ||||
|   # If none of the rules above match, it's a good idea to have a fallback rule | ||||
|   # which enables an output device that is always present, so you can debug | ||||
|   # what's going on. | ||||
|   - name: Fallback | ||||
|     configure_single: eDP-1 | ||||
|     primary: eDP-1 | ||||
| @@ -1,13 +0,0 @@ | ||||
| #!/bin/bash | ||||
| COMMON=~/.dotfiles/i3/conf/common/ | ||||
| CLIENT=~/.dotfiles/i3/conf/client/$(hostname)/ | ||||
|  | ||||
| if [ -f "~/.dotfiles/i3/config" ]; then | ||||
|     rm ~/.dotfiles/i3/config | ||||
| fi | ||||
|  | ||||
| if [ ! -d $CLIENT ]; then | ||||
|     cp -r ~/.dotfiles/i3/conf/client/default ~/.dotfiles/i3/conf/client/$(hostname) | ||||
| fi | ||||
|  | ||||
| cat ${CLIENT}header ${COMMON}base ${CLIENT}bar ${CLIENT}assignments ${COMMON}footer > ~/.dotfiles/i3/config | ||||
| @@ -1,23 +0,0 @@ | ||||
| # {{{ ASSIGNMENTS }}} | ||||
|  | ||||
|     # Browser | ||||
|         # workspace $ws1 gaps outer 0 | ||||
|         # workspace $ws1 gaps inner 0 | ||||
|         assign [class="Firefox"] $ws1 | ||||
|  | ||||
|     # Terminal | ||||
|         assign [class="URxvt" instance="urxvt"]   $ws2 | ||||
|  | ||||
|     # CHAT | ||||
|         assign [class="discord"] $ws4 | ||||
|         assign [class="TelegramDesktop"] $ws4 | ||||
|         exec_always 'i3-msg "workspace number 4; append_layout ~/.layout/ws-4.json"' | ||||
|  | ||||
|     # Mail | ||||
|         assign [instance="mail"] $ws5 | ||||
|     # KeepassXC | ||||
|         assign [class="keepassxc"] $ws10 | ||||
|  | ||||
|     # Morrowind | ||||
|         for_window [instance="morrowind.exe"] fullscreen enable | ||||
|         assign [instance="morrowind.exe"] $ws1 | ||||
| @@ -1,10 +0,0 @@ | ||||
| # set $CLIENT_BUMBLEBEE -m spotify load memory disk nic amixer datetime -p nic.states=^down -p amixer.left-click="pavucontrol" -t onedark-powerline -a load memory disk | ||||
| # | ||||
| # # {{{ STATUS BAR }}} | ||||
| # bar { | ||||
| #     position       top | ||||
| #     status_command bumblebee-status $CLIENT_BUMBLEBEE | ||||
| # } | ||||
|  | ||||
| exec_always --no-startup-id $HOME/.polybar/polybar_wrapper.sh | ||||
|  | ||||
| @@ -1,29 +0,0 @@ | ||||
|  | ||||
| # {{{ VARIABLES  }}} | ||||
|  | ||||
|     set $mod Mod4 | ||||
|     set $TERMINAL urxvt | ||||
|  | ||||
|     # gaps | ||||
|     set $gap_outer 10 | ||||
|     set $gap_inner 0 | ||||
|     smart_borders on | ||||
|  | ||||
|     set $ws1 "1 " | ||||
|     # Terminal | ||||
|     set $ws2 "2 " | ||||
|     # Work | ||||
|     set $ws3 "3 " | ||||
|     # Chat | ||||
|     set $ws4 "4 " | ||||
|     # Mail | ||||
|     set $ws5 "5 " | ||||
|     set $ws6 "6" | ||||
|     set $ws7 "7" | ||||
|     set $ws8 "8" | ||||
|     set $ws9 "9" | ||||
|     set $ws10 "10" | ||||
|  | ||||
| # {{{ SPECIAL KEYBINDINGS }}} | ||||
|  | ||||
| bindsym $mod+m move workspace to output right | ||||
| @@ -1,12 +0,0 @@ | ||||
| # {{{ WORKSPACES }}} | ||||
|  | ||||
|     # Browser | ||||
|         assign [class="Firefox"] $ws1 | ||||
|  | ||||
|     # Terminal | ||||
|         assign [class="URxvt" instance="urxvt"]   $ws2 | ||||
|  | ||||
|     # Mail | ||||
|         assign [instance="mail"] $ws5 | ||||
|     # KeepassXC | ||||
|         assign [class="keepassxc"] $ws10 | ||||
| @@ -1,10 +0,0 @@ | ||||
| # set $CLIENT_BUMBLEBEE -m spotify load memory disk nic amixer datetime -p nic.states=^down -p amixer.left-click="pavucontrol" -t onedark-powerline -a load memory disk | ||||
| # | ||||
| # # {{{ STATUS BAR }}} | ||||
| # bar { | ||||
| #     position       top | ||||
| #     status_command bumblebee-status $CLIENT_BUMBLEBEE | ||||
| # } | ||||
|  | ||||
| exec_always --no-startup-id $HOME/.polybar/polybar_wrapper.sh | ||||
|  | ||||
| @@ -1,23 +0,0 @@ | ||||
| # {{{ VARIABLES  }}} | ||||
|  | ||||
|     set $mod Mod4 | ||||
|     set $TERMINAL urxvt | ||||
|  | ||||
|     # gaps | ||||
|     set $gap_outer 10 | ||||
|     set $gap_inner 0 | ||||
|     smart_borders on | ||||
|  | ||||
|     set $ws1 "1 " | ||||
|     # Terminal | ||||
|     set $ws2 "2 " | ||||
|     # Work | ||||
|     set $ws3 "3 " | ||||
|     set $ws4 "4" | ||||
|     # Mail | ||||
|     set $ws5 "5 " | ||||
|     set $ws6 "6" | ||||
|     set $ws7 "7" | ||||
|     set $ws8 "8" | ||||
|     set $ws9 "9" | ||||
|     set $ws10 "10" | ||||
| @@ -1,16 +0,0 @@ | ||||
| # {{{ WORKSPACES }}} | ||||
|  | ||||
|     # Browser | ||||
|         workspace $ws1 gaps outer 0 | ||||
|         workspace $ws1 gaps inner 0 | ||||
|         assign [class="Firefox"] $ws1 | ||||
|  | ||||
|     # Terminal | ||||
|         assign [class="URxvt" instance="urxvt"]   $ws2 | ||||
|  | ||||
|     # Mail | ||||
|         workspace $ws5 gaps outer 0 | ||||
|         workspace $ws5 gaps inner 0 | ||||
|         assign [instance="mail"] $ws5 | ||||
|     # KeepassXC | ||||
|         assign [class="keepassxc"] $ws10 | ||||
| @@ -1,7 +0,0 @@ | ||||
| set $CLIENT_BUMBLEBEE -m disk nic sensors battery caffeine amixer brightness datetime -p battery.device=BAT0,BAT1 brightness.device_path=/sys/class/backlight/acpi_video0 disk.format={left} nic.states=^down sensors.path=/sys/class/thermal/thermal_zone2/temp  -t gruvbox-powerline | ||||
|  | ||||
| # {{{ STATUS BAR }}} | ||||
| bar { | ||||
|     position       top | ||||
|     status_command bumblebee-status $CLIENT_BUMBLEBEE | ||||
| } | ||||
| @@ -1,22 +0,0 @@ | ||||
| # {{{ VARIABLES  }}} | ||||
|  | ||||
|     set $mod Mod4 | ||||
|     set $TERMINAL urxvt | ||||
|  | ||||
|     # gaps | ||||
|     set $gap_outer 15 | ||||
|     set $gap_inner 10 | ||||
|  | ||||
|     set $ws1 "1 " | ||||
|     # Terminal | ||||
|     set $ws2 "2 " | ||||
|     # Work | ||||
|     set $ws3 "3 " | ||||
|     set $ws4 "4" | ||||
|     # Mail | ||||
|     set $ws5 "5 " | ||||
|     set $ws6 "6" | ||||
|     set $ws7 "7" | ||||
|     set $ws8 "8" | ||||
|     set $ws9 "9" | ||||
|     set $ws10 "10" | ||||
| @@ -1,30 +0,0 @@ | ||||
| # {{{ WORKSPACES }}} | ||||
|  | ||||
|     # Browser | ||||
|         workspace $ws1 gaps outer 0 | ||||
|         workspace $ws1 gaps inner 0 | ||||
|         assign [class="Firefox"] $ws1 | ||||
|         assign [class="chromium"] $ws1 | ||||
|  | ||||
|     # Terminal | ||||
|         assign [class="URxvt" instance="urxvt"]   $ws2 | ||||
|  | ||||
|     # Mail | ||||
|         workspace $ws5 gaps outer 0 | ||||
|         workspace $ws5 gaps inner 0 | ||||
|         assign [instance="mail"] $ws5 | ||||
|     # KeepassXC | ||||
|         assign [class="keepassxc"] $ws10 | ||||
|     # Spotify | ||||
|         assign [class="Spotify"] $ws3 | ||||
|  | ||||
|     # Left Wing Display | ||||
|         workspace $wsF1 gaps outer 0 | ||||
|         workspace $wsF1 gaps inner 0 | ||||
|     # Right Wing Display | ||||
|         workspace $wsF2 gaps outer 0 | ||||
|         workspace $wsF2 gaps inner 0 | ||||
|  | ||||
| # {{{ SPECIAL KEYBINDINGS }}} | ||||
|  | ||||
| bindsym $mod+m move workspace to output right | ||||
| @@ -1,7 +0,0 @@ | ||||
| # set $CLIENT_BUMBLEBEE -m disk nic sensors battery caffeine amixer brightness datetime -p battery.device=BAT0 brightness.device_path=/sys/class/backlight/intel_backlight/actual_brightness disk.format={left} nic.states=^down sensors.path=/sys/class/thermal/thermal_zone2/temp  -t gruvbox-powerline | ||||
|  | ||||
| # {{{ STATUS BAR }}} | ||||
| # bar { | ||||
| #     position       top | ||||
| #     status_command bumblebee-status $CLIENT_BUMBLEBEE | ||||
| # } | ||||
| @@ -1,64 +0,0 @@ | ||||
| ### ADDITIONAL WORKSPACES | ||||
|  | ||||
|     # switch to workspace | ||||
|     bindsym $mod+F1 workspace $wsF1 | ||||
|     bindsym $mod+F2 workspace $wsF2 | ||||
|     bindsym $mod+F3 workspace $wsF3 | ||||
|     bindsym $mod+F4 workspace $wsF4 | ||||
|     bindsym $mod+F5 workspace $wsF5 | ||||
|     bindsym $mod+F6 workspace $wsF6 | ||||
|     bindsym $mod+F7 workspace $wsF7 | ||||
|     bindsym $mod+F8 workspace $wsF8 | ||||
|     bindsym $mod+F9 workspace $wsF9 | ||||
|     bindsym $mod+F10 workspace $wsF10 | ||||
|  | ||||
|     # move focused container to workspace | ||||
|     bindsym $mod+Shift+F1 move container to workspace $wsF1 | ||||
|     bindsym $mod+Shift+F2 move container to workspace $wsF2 | ||||
|     bindsym $mod+Shift+F3 move container to workspace $wsF3 | ||||
|     bindsym $mod+Shift+F4 move container to workspace $wsF4 | ||||
|     bindsym $mod+Shift+F5 move container to workspace $wsF5 | ||||
|     bindsym $mod+Shift+F6 move container to workspace $wsF6 | ||||
|     bindsym $mod+Shift+F7 move container to workspace $wsF7 | ||||
|     bindsym $mod+Shift+F8 move container to workspace $wsF8 | ||||
|     bindsym $mod+Shift+F9 move container to workspace $wsF9 | ||||
|     bindsym $mod+Shift+F10 move container to workspace $wsF10 | ||||
|  | ||||
| # FLAMESHOT | ||||
|     bindsym --release Control+Shift+Print exec flameshot gui | ||||
|     bindsym --release Control+Print exec flameshot screen -c | ||||
|  | ||||
|  | ||||
| # {{{ VARIABLES  }}} | ||||
|  | ||||
|     set $mod Mod4 | ||||
|     set $TERMINAL alacritty | ||||
|  | ||||
|     # gaps | ||||
|     set $gap_outer 15 | ||||
|     set $gap_inner 10 | ||||
|  | ||||
|     set $ws1 "1" | ||||
|     # Terminal | ||||
|     set $ws2 "2" | ||||
|     # Work | ||||
|     set $ws3 "3" | ||||
|     set $ws4 "4" | ||||
|     # Mail | ||||
|     set $ws5 "5" | ||||
|     set $ws6 "6" | ||||
|     set $ws7 "7" | ||||
|     set $ws8 "8" | ||||
|     set $ws9 "9" | ||||
|     set $ws10 "10" | ||||
|  | ||||
|     set $wsF1 "F1" | ||||
|     set $wsF2 "F2" | ||||
|     set $wsF3 "F3" | ||||
|     set $wsF4 "F4" | ||||
|     set $wsF5 "F5" | ||||
|     set $wsF6 "F6" | ||||
|     set $wsF7 "F7" | ||||
|     set $wsF8 "F8" | ||||
|     set $wsF9 "F9" | ||||
|     set $wsF10 "F10" | ||||
| @@ -1,29 +0,0 @@ | ||||
| # {{{ WORKSPACES }}} | ||||
|  | ||||
|     # Chat | ||||
|         assign [class="SchildiChat"] $wsF2 | ||||
|  | ||||
|     for_window [class="JidePopup"] floating enable | ||||
|     for_window [class="zoom"] floating enable | ||||
|     for_window [class="zoom" title="Zoom - Licensed Account"] floating disable | ||||
|     for_window [class="zoom" title="Zoom Meeting"] floating disable | ||||
|  | ||||
|     # Floating MPV | ||||
|     for_window [instance="floating" class="mpv"] floating enable | ||||
|     for_window [instance="floating" class="mpv"] sticky enable | ||||
|     for_window [instance="floating" class="mpv"] resize set 711 400 | ||||
|     for_window [instance="floating" class="mpv"] move position 3810 1040 | ||||
|  | ||||
|     for_window [class="Tomate-gtk"] floating enable | ||||
|     for_window [class="Tomate-gtk"] sticky enable | ||||
|  | ||||
| # {{{ SPECIAL KEYBINDINGS }}} | ||||
|  | ||||
| bindsym $mod+m move workspace to output right | ||||
| bindsym $mod+Shift+m move workspace to output up | ||||
|  | ||||
| bindsym $mod+Shift+n exec --no-startup-id /usr/bin/networkmanager_dmenu --rofi -i | ||||
| bindsym $mod+Shift+x exec --no-startup-id ~/.config/rofi/bin/menu_powermenu | ||||
| bindsym $mod+Shift+b exec --no-startup-id rofi-bluetooth | ||||
| bindsym $mod+Shift+e exec --no-startup-id rofimoji | ||||
|  | ||||
| @@ -1,5 +0,0 @@ | ||||
| # {{{ STATUS BAR }}} | ||||
| # bar { | ||||
| #     position       top | ||||
| #     status_command bumblebee-status $CLIENT_BUMBLEBEE | ||||
| # } | ||||
| @@ -1,60 +0,0 @@ | ||||
| ### ADDITIONAL WORKSPACES | ||||
|  | ||||
|     # switch to workspace | ||||
|     bindsym $mod+F1 workspace $wsF1 | ||||
|     bindsym $mod+F2 workspace $wsF2 | ||||
|     bindsym $mod+F3 workspace $wsF3 | ||||
|     bindsym $mod+F4 workspace $wsF4 | ||||
|     bindsym $mod+F5 workspace $wsF5 | ||||
|     bindsym $mod+F6 workspace $wsF6 | ||||
|     bindsym $mod+F7 workspace $wsF7 | ||||
|     bindsym $mod+F8 workspace $wsF8 | ||||
|     bindsym $mod+F9 workspace $wsF9 | ||||
|     bindsym $mod+F10 workspace $wsF10 | ||||
|  | ||||
|     # move focused container to workspace | ||||
|     bindsym $mod+Shift+F1 move container to workspace $wsF1 | ||||
|     bindsym $mod+Shift+F2 move container to workspace $wsF2 | ||||
|     bindsym $mod+Shift+F3 move container to workspace $wsF3 | ||||
|     bindsym $mod+Shift+F4 move container to workspace $wsF4 | ||||
|     bindsym $mod+Shift+F5 move container to workspace $wsF5 | ||||
|     bindsym $mod+Shift+F6 move container to workspace $wsF6 | ||||
|     bindsym $mod+Shift+F7 move container to workspace $wsF7 | ||||
|     bindsym $mod+Shift+F8 move container to workspace $wsF8 | ||||
|     bindsym $mod+Shift+F9 move container to workspace $wsF9 | ||||
|     bindsym $mod+Shift+F10 move container to workspace $wsF10 | ||||
|  | ||||
| # FLAMESHOT | ||||
|     bindsym --release Control+Shift+Print exec flameshot gui | ||||
|     bindsym --release Control+Print exec flameshot screen -c | ||||
|  | ||||
| # {{{ VARIABLES  }}} | ||||
|  | ||||
|     set $mod Mod4 | ||||
|     set $TERMINAL alacritty | ||||
|  | ||||
|     # gaps | ||||
|     set $gap_outer 0 | ||||
|     set $gap_inner 0 | ||||
|  | ||||
|     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" | ||||
|  | ||||
|     set $wsF1 "F1" | ||||
|     set $wsF2 "F2" | ||||
|     set $wsF3 "F3" | ||||
|     set $wsF4 "F4" | ||||
|     set $wsF5 "F5" | ||||
|     set $wsF6 "F6" | ||||
|     set $wsF7 "F7" | ||||
|     set $wsF8 "F8" | ||||
|     set $wsF9 "F9" | ||||
|     set $wsF10 "F10" | ||||
| @@ -1,185 +0,0 @@ | ||||
| # This file has been auto-generated by i3-config-wizard(1). | ||||
| # It will not be overwritten, so edit it as you like. | ||||
| # | ||||
| # Should you change your keyboard layout some time, delete | ||||
| # this file and re-run i3-config-wizard(1). | ||||
| # | ||||
|  | ||||
| # i3 config file (v4) | ||||
| # | ||||
| # Please see https://i3wm.org/docs/userguide.html for a complete reference! | ||||
|  | ||||
|  | ||||
| # {{{ FONT  }}} | ||||
| font pango:Hack 8 | ||||
|  | ||||
| # This font is widely installed, provides lots of unicode glyphs, right-to-left | ||||
| # text rendering and scalability on retina/hidpi displays (thanks to pango). | ||||
| #font pango:DejaVu Sans Mono 8 | ||||
|  | ||||
| # Before i3 v4.8, we used to recommend this one as the default: | ||||
| # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 | ||||
| # The font above is very space-efficient, that is, it looks good, sharp and | ||||
| # clear in small sizes. However, its unicode glyph coverage is limited, the old | ||||
| # X core fonts rendering does not support right-to-left and this being a bitmap | ||||
| # font, it doesn’t scale on retina/hidpi displays. | ||||
|  | ||||
|  | ||||
| # Use Mouse+$mod to drag floating windows to their wanted position | ||||
| floating_modifier $mod | ||||
|  | ||||
| # {{{ KEYBINDINGS  }}} | ||||
|  | ||||
|     # start a terminal | ||||
|     bindsym $mod+Return exec $TERMINAL | ||||
|     bindsym $mod+Shift+Return exec $TERMINAL -name forced_term | ||||
|  | ||||
|     # kill focused window | ||||
|     bindsym $mod+Shift+q kill | ||||
|  | ||||
|     # change focus | ||||
|     bindsym $mod+h focus left | ||||
|     bindsym $mod+j focus down | ||||
|     bindsym $mod+k focus up | ||||
|     bindsym $mod+l focus right | ||||
|  | ||||
|     # move focused window | ||||
|     bindsym $mod+Shift+h move left | ||||
|     bindsym $mod+Shift+j move down | ||||
|     bindsym $mod+Shift+k move up | ||||
|     bindsym $mod+Shift+l move right | ||||
|  | ||||
|     # Change split orientation | ||||
|     bindsym $mod+v          split v | ||||
|     bindsym $mod+Shift+v    split h | ||||
|  | ||||
|     # 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 | ||||
|  | ||||
|     # toggle tiling / floating | ||||
|     bindsym $mod+Ctrl+space floating toggle | ||||
|  | ||||
|     # change focus between tiling / floating windows | ||||
|     bindsym $mod+space focus mode_toggle | ||||
|  | ||||
|     # focus the parent container | ||||
|     bindsym $mod+a focus parent | ||||
|  | ||||
|     # focus the child container | ||||
|     bindsym $mod+Shift+a focus child | ||||
|  | ||||
|  | ||||
|     # switch to workspace | ||||
|     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+7 workspace $ws7 | ||||
|     bindsym $mod+8 workspace $ws8 | ||||
|     bindsym $mod+9 workspace $ws9 | ||||
|     bindsym $mod+0 workspace $ws10 | ||||
|  | ||||
|     # move focused container to workspace | ||||
|     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+7 move container to workspace $ws7 | ||||
|     bindsym $mod+Shift+8 move container to workspace $ws8 | ||||
|     bindsym $mod+Shift+9 move container to workspace $ws9 | ||||
|     bindsym $mod+Shift+0 move container to workspace $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 | ||||
|  | ||||
|  | ||||
|     # Urgent window | ||||
|     bindsym $mod+x [urgent=latest] focus | ||||
|  | ||||
|  | ||||
|     # MEDIA KEYS | ||||
|     bindsym XF86AudioRaiseVolume exec --no-startup-id amixer set Master 1%+ | ||||
|     bindsym XF86AudioLowerVolume exec --no-startup-id amixer set Master 1%- | ||||
|     bindsym Ctrl+XF86AudioRaiseVolume exec --no-startup-id amixer set Master 10%+ | ||||
|     bindsym Ctrl+XF86AudioLowerVolume exec --no-startup-id amixer set Master 10%- | ||||
|  | ||||
|     bindsym XF86AudioMute        exec --no-startup-id amixer set Master toggle | ||||
|     bindsym XF86AudioPlay        exec --no-startup-id playerctl play-pause | ||||
|     bindsym XF86AudioNext        exec --no-startup-id playerctl next | ||||
|     bindsym XF86AudioPrev        exec --no-startup-id playerctl previous | ||||
|     bindsym XF86AudioStop        exec --no-startup-id playerctl stop | ||||
|  | ||||
|     # Screensaver || ThinkVantage | ||||
|     bindsym XF86ScreenSaver exec xautolock -locknow | ||||
|     bindsym XF86Battery	exec xautolock -locknow | ||||
|     bindsym XF86Launch1     exec "xautolock -locknow; sync; systemctl suspend-then-hibernate" | ||||
|  | ||||
|     # Lock screen | ||||
|     bindsym $mod+Ctrl+l     exec "xautolock -locknow; sleep 1; xset dpms force off" | ||||
|  | ||||
|     # Screenshot | ||||
|     bindsym Print exec ~/.config/i3/scripts/screenshot.sh | ||||
|  | ||||
|  | ||||
|     # {{{ RESIZE MODE }}} | ||||
|     mode "resize" { | ||||
|             # These bindings trigger as soon as you enter the resize mode | ||||
|  | ||||
|             bindsym h resize grow width 10 px or 10 ppt | ||||
|             bindsym j resize grow height 10 px or 10 ppt | ||||
|             bindsym k resize shrink height 10 px or 10 ppt | ||||
|             bindsym l resize shrink width 10 px or 10 ppt | ||||
|  | ||||
|             # back to normal: Enter or Escape or $mod+r | ||||
|             bindsym Return mode "default" | ||||
|             bindsym Escape mode "default" | ||||
|             bindsym $mod+r mode "default" | ||||
|     } | ||||
|     bindsym $mod+r mode "resize" | ||||
|  | ||||
|     # {{{ GAPS MODE }}} | ||||
|     mode "gaps" { | ||||
|         bindsym h gaps outer all plus  5 | ||||
|         bindsym j gaps inner all plus  5 | ||||
|         bindsym k gaps inner all minus 5 | ||||
|         bindsym l gaps outer all minus 5 | ||||
|         bindsym i gaps inner all set $gap_inner | ||||
|         bindsym o gaps outer all set $gap_outer | ||||
|         bindsym u gaps inner all set 0 | ||||
|         bindsym p gaps outer all set 0 | ||||
|  | ||||
|         bindsym Shift+h gaps outer current plus  5 | ||||
|         bindsym Shift+j gaps inner current plus  5 | ||||
|         bindsym Shift+k gaps inner current minus 5 | ||||
|         bindsym Shift+l gaps outer current minus 5 | ||||
|         bindsym Shift+i gaps inner current set $gap_inner | ||||
|         bindsym Shift+o gaps outer current set $gap_outer | ||||
|         bindsym Shift+u gaps inner current set 0 | ||||
|         bindsym Shift+p gaps outer current set 0 | ||||
|  | ||||
|         bindsym Return mode "default" | ||||
|         bindsym Escape mode "default" | ||||
|     } | ||||
|     bindsym $mod+g mode "gaps" | ||||
|  | ||||
|  | ||||
| # {{{ GAPS }}} | ||||
|     gaps inner $gap_inner | ||||
|     gaps outer $gap_outer | ||||
|  | ||||
| # {{{ NO BORDERS }}} | ||||
|     default_border none | ||||
|     default_floating_border normal | ||||
|  | ||||
| @@ -1,5 +0,0 @@ | ||||
| # {{{ KEYBOARD MAP }}} | ||||
|  # exec_always setxkbmap de -option 'compose:ralt,lv3:caps_switch' -option nodeadkeys | ||||
|  | ||||
| # {{{ AUTOSTART  }}} | ||||
| exec ~/.config/autorun.sh | ||||
| @@ -1,109 +0,0 @@ | ||||
| { | ||||
|     // this is a manually added container to restore the vertical split | ||||
|     "layout": "splitv", | ||||
|     "percent": 0.5, | ||||
|     "type": "con", | ||||
|     "nodes": [ | ||||
|         { | ||||
|             "border": "none", | ||||
|             "floating": "auto_off", | ||||
|             "layout": "tabbed", | ||||
|             "marks": [], | ||||
|             "percent": 0.5, | ||||
|             "type": "con", | ||||
|             "nodes": [ | ||||
|                 { | ||||
|                     "border": "none", | ||||
|                     "current_border_width": 0, | ||||
|                     "floating": "auto_off", | ||||
|                     "geometry": { | ||||
|                        "height": 600, | ||||
|                        "width": 800, | ||||
|                        "x": 0, | ||||
|                        "y": 0 | ||||
|                     }, | ||||
|                     "marks": [], | ||||
|                     "name": "Spotify", | ||||
|                     "percent": 0.5, | ||||
|                     "swallows": [ | ||||
|                        { | ||||
|                         "class": "^Spotify$" | ||||
|                        } | ||||
|                     ], | ||||
|                     "type": "con" | ||||
|                 }, | ||||
|                 { | ||||
|                     "border": "none", | ||||
|                     "current_border_width": 0, | ||||
|                     "floating": "auto_off", | ||||
|                     "geometry": { | ||||
|                        "height": 600, | ||||
|                        "width": 800, | ||||
|                        "x": 0, | ||||
|                        "y": 0 | ||||
|                     }, | ||||
|                     "marks": [], | ||||
|                     "name": "Keystore.kdbx - KeePassXC", | ||||
|                     "percent": 0.5, | ||||
|                     "swallows": [ | ||||
|                        { | ||||
|                        "class": "^KeePassXC$" | ||||
|                        } | ||||
|                     ], | ||||
|                     "type": "con" | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         { | ||||
|             "border": "none", | ||||
|             "floating": "auto_off", | ||||
|             "layout": "tabbed", | ||||
|             "marks": [], | ||||
|             "percent": 0.5, | ||||
|             "type": "con", | ||||
|             "nodes": [ | ||||
|                 { | ||||
|                     "border": "none", | ||||
|                     "current_border_width": 0, | ||||
|                     "floating": "auto_off", | ||||
|                     "geometry": { | ||||
|                        "height": 600, | ||||
|                        "width": 800, | ||||
|                        "x": 0, | ||||
|                        "y": 0 | ||||
|                     }, | ||||
|                     "marks": [], | ||||
|                     "name": "btop", | ||||
|                     "percent": 0.5, | ||||
|                     "swallows": [ | ||||
|                        { | ||||
|                        "class": "^Alacritty$", | ||||
|                        "title": "^btop$" | ||||
|                        } | ||||
|                     ], | ||||
|                     "type": "con" | ||||
|                 }, | ||||
|                 { | ||||
|                     "border": "none", | ||||
|                     "current_border_width": 0, | ||||
|                     "floating": "auto_off", | ||||
|                     "geometry": { | ||||
|                        "height": 1408, | ||||
|                        "width": 3440, | ||||
|                        "x": 1080, | ||||
|                        "y": 32 | ||||
|                     }, | ||||
|                     "marks": [], | ||||
|                     "name": "Kalender – Evolution", | ||||
|                     "percent": 1, | ||||
|                     "swallows": [ | ||||
|                        { | ||||
|                        "class": "^thunderbird$" | ||||
|                        } | ||||
|                     ], | ||||
|                     "type": "con" | ||||
|                 } | ||||
|             ] | ||||
|         } | ||||
|     ] | ||||
| } | ||||
| @@ -1,2 +0,0 @@ | ||||
| #!/bin/bash | ||||
| xfce4-screenshooter -o "/usr/bin/xclip -i -t image/png -selection clipboard" -r | ||||
| @@ -1,12 +0,0 @@ | ||||
| #!/bin/bash | ||||
| exec &> /dev/null | ||||
| i3-msg "workspace F1; append_layout $HOME/.dotfiles/i3/layouts/left.json" | ||||
|  | ||||
| alacritty -t "btop" -e "btop" & | ||||
| disown | ||||
| spotify & | ||||
| disown | ||||
| keepassxc & | ||||
| disown | ||||
| thunderbird & | ||||
| disown | ||||
| @@ -1,50 +0,0 @@ | ||||
| #!/bin/bash | ||||
| exec &>/dev/null | ||||
|  | ||||
| # This script moves all ws where they are supposed to be when my Framework is docked. | ||||
| # It is called by Grobi execute_after | ||||
|  | ||||
| center() { | ||||
|     i3-msg "workspace $1" | ||||
|     i3-msg "move workspace to output DP-2-3" | ||||
| } | ||||
|  | ||||
| left() { | ||||
|     i3-msg "workspace $1" | ||||
|     i3-msg "move workspace to output DP-2-1" | ||||
| } | ||||
|  | ||||
| right() { | ||||
|     i3-msg "workspace $1" | ||||
|     i3-msg "move workspace to output DP-2-2" | ||||
| } | ||||
|  | ||||
| VISIBLE="$(i3-msg -t get_workspaces | jq '.[] | select(.visible==true).name' | cut -d"\"" -f2 | tr -d \")" | ||||
| FOCUS="$(i3-msg -t get_workspaces | jq '.[] | select(.focused==true).name' | cut -d"\"" -f2 | tr -d \")" | ||||
|  | ||||
| center 1 | ||||
| center 2 | ||||
| center 3 | ||||
| center 4 | ||||
| center 5 | ||||
| center 6 | ||||
| center 7 | ||||
| center 8 | ||||
| center 9 | ||||
| center 10 | ||||
| center F4 | ||||
| center F5 | ||||
| center F6 | ||||
| center F7 | ||||
| center F8 | ||||
| center F9 | ||||
| center F10 | ||||
| left F1 | ||||
| right F2 | ||||
| right F3 | ||||
|  | ||||
| for i in $VISIBLE; do | ||||
|     i3-msg "workspace $i" | ||||
| done | ||||
|  | ||||
| i3-msg "workspace $FOCUS" | ||||
							
								
								
									
										429
									
								
								picom/picom.conf
									
									
									
									
									
								
							
							
						
						
									
										429
									
								
								picom/picom.conf
									
									
									
									
									
								
							| @@ -1,429 +0,0 @@ | ||||
| ################################# | ||||
| #             Shadows           # | ||||
| ################################# | ||||
|  | ||||
|  | ||||
| # Enabled client-side shadows on windows. Note desktop windows | ||||
| # (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow, | ||||
| # unless explicitly requested using the wintypes option. | ||||
| # | ||||
| shadow = false | ||||
| # shadow = true; | ||||
|  | ||||
| # The blur radius for shadows, in pixels. (defaults to 12) | ||||
| # shadow-radius = 12 | ||||
| shadow-radius = 7; | ||||
|  | ||||
| # The opacity of shadows. (0.0 - 1.0, defaults to 0.75) | ||||
| # shadow-opacity = .75 | ||||
|  | ||||
| # The left offset for shadows, in pixels. (defaults to -15) | ||||
| # shadow-offset-x = -15 | ||||
| shadow-offset-x = -7; | ||||
|  | ||||
| # The top offset for shadows, in pixels. (defaults to -15) | ||||
| # shadow-offset-y = -15 | ||||
| shadow-offset-y = -7; | ||||
|  | ||||
| # Avoid drawing shadows on dock/panel windows. This option is deprecated, | ||||
| # you should use the *wintypes* option in your config file instead. | ||||
| # | ||||
| # no-dock-shadow = false | ||||
|  | ||||
| # Don't draw shadows on drag-and-drop windows. This option is deprecated, | ||||
| # you should use the *wintypes* option in your config file instead. | ||||
| # | ||||
| # no-dnd-shadow = false | ||||
|  | ||||
| # Red color value of shadow (0.0 - 1.0, defaults to 0). | ||||
| # shadow-red = 0 | ||||
|  | ||||
| # Green color value of shadow (0.0 - 1.0, defaults to 0). | ||||
| # shadow-green = 0 | ||||
|  | ||||
| # Blue color value of shadow (0.0 - 1.0, defaults to 0). | ||||
| # shadow-blue = 0 | ||||
|  | ||||
| # Do not paint shadows on shaped windows. Note shaped windows | ||||
| # here means windows setting its shape through X Shape extension. | ||||
| # Those using ARGB background is beyond our control. | ||||
| # Deprecated, use | ||||
| #   shadow-exclude = 'bounding_shaped' | ||||
| # or | ||||
| #   shadow-exclude = 'bounding_shaped && !rounded_corners' | ||||
| # instead. | ||||
| # | ||||
| # shadow-ignore-shaped = '' | ||||
|  | ||||
| # Specify a list of conditions of windows that should have no shadow. | ||||
| # | ||||
| # examples: | ||||
| #   shadow-exclude = "n:e:Notification"; | ||||
| # | ||||
| # shadow-exclude = [] | ||||
| shadow-exclude = [ | ||||
|   "name = 'Notification'", | ||||
|   "class_g = 'Conky'", | ||||
|   "class_g = 'Dunst'", | ||||
|   "class_g ?= 'Notify-osd'", | ||||
|   "class_g = 'Cairo-clock'", | ||||
|   "_GTK_FRAME_EXTENTS@:c" | ||||
| ]; | ||||
|  | ||||
| # Specify a X geometry that describes the region in which shadow should not | ||||
| # be painted in, such as a dock window region. Use | ||||
| #    shadow-exclude-reg = "x10+0+0" | ||||
| # for example, if the 10 pixels on the bottom of the screen should not have shadows painted on. | ||||
| # | ||||
| # shadow-exclude-reg = "" | ||||
|  | ||||
| # Crop shadow of a window fully on a particular Xinerama screen to the screen. | ||||
| # xinerama-shadow-crop = false | ||||
|  | ||||
|  | ||||
| ################################# | ||||
| #           Fading              # | ||||
| ################################# | ||||
|  | ||||
|  | ||||
| # Fade windows in/out when opening/closing and when opacity changes, | ||||
| #  unless no-fading-openclose is used. | ||||
| # fading = false | ||||
| fading = true | ||||
|  | ||||
| # Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028) | ||||
| # fade-in-step = 0.028 | ||||
| fade-in-step = 0.03; | ||||
|  | ||||
| # Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03) | ||||
| # fade-out-step = 0.03 | ||||
| fade-out-step = 0.03; | ||||
|  | ||||
| # The time between steps in fade step, in milliseconds. (> 0, defaults to 10) | ||||
| # fade-delta = 10 | ||||
|  | ||||
| # Specify a list of conditions of windows that should not be faded. | ||||
| # fade-exclude = [] | ||||
|  | ||||
| # Do not fade on window open/close. | ||||
| # no-fading-openclose = false | ||||
|  | ||||
| # Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc. | ||||
| # no-fading-destroyed-argb = false | ||||
|  | ||||
|  | ||||
| ################################# | ||||
| #   Transparency / Opacity      # | ||||
| ################################# | ||||
|  | ||||
|  | ||||
| # Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0) | ||||
| #inactive-opacity = 1 | ||||
| # inactive-opacity = 0.95; | ||||
|  | ||||
| # Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default) | ||||
| # frame-opacity = 1.0 | ||||
| # frame-opacity = 0.7; | ||||
|  | ||||
| # Default opacity for dropdown menus and popup menus. (0.0 - 1.0, defaults to 1.0) | ||||
| # menu-opacity = 1.0 | ||||
|  | ||||
| # Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows. | ||||
| # inactive-opacity-override = true | ||||
| inactive-opacity-override = false; | ||||
|  | ||||
| # Default opacity for active windows. (0.0 - 1.0, defaults to 1.0) | ||||
| # active-opacity = 1.0 | ||||
|  | ||||
| # Dim inactive windows. (0.0 - 1.0, defaults to 0.0) | ||||
| # inactive-dim = 0.0 | ||||
|  | ||||
| # Specify a list of conditions of windows that should always be considered focused. | ||||
| # focus-exclude = [] | ||||
| focus-exclude = [ "class_g = 'Cairo-clock'" ]; | ||||
|  | ||||
| # Use fixed inactive dim value, instead of adjusting according to window opacity. | ||||
| # inactive-dim-fixed = 1.0 | ||||
|  | ||||
| # Specify a list of opacity rules, in the format `PERCENT:PATTERN`, | ||||
| # like `50:name *= "Firefox"`. picom-trans is recommended over this. | ||||
| # Note we don't make any guarantee about possible conflicts with other | ||||
| # programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows. | ||||
| # example: | ||||
| #    opacity-rule = [ "80:class_g = 'URxvt'" ]; | ||||
| # | ||||
| opacity-rule = [ | ||||
|                 "100:class_g = 'pomotroid'", | ||||
|                 "100:class_g = 'mpv'", | ||||
|                 "100:name *= 'YouTube'", | ||||
|                 "100:name = 'Pympress-Inhalt'" | ||||
| ] | ||||
|  | ||||
|  | ||||
| ################################# | ||||
| #     Background-Blurring       # | ||||
| ################################# | ||||
|  | ||||
|  | ||||
| # Parameters for background blurring, see the *BLUR* section for more information. | ||||
| # blur-method = | ||||
| # blur-size = 12 | ||||
| # | ||||
| # blur-deviation = false | ||||
|  | ||||
| # Blur background of semi-transparent / ARGB windows. | ||||
| # Bad in performance, with driver-dependent behavior. | ||||
| # The name of the switch may change without prior notifications. | ||||
| # | ||||
| # blur-background = false | ||||
|  | ||||
| # Blur background of windows when the window frame is not opaque. | ||||
| # Implies: | ||||
| #    blur-background | ||||
| # Bad in performance, with driver-dependent behavior. The name may change. | ||||
| # | ||||
| # blur-background-frame = false | ||||
|  | ||||
|  | ||||
| # Use fixed blur strength rather than adjusting according to window opacity. | ||||
| # blur-background-fixed = false | ||||
|  | ||||
|  | ||||
| # Specify the blur convolution kernel, with the following format: | ||||
| # example: | ||||
| #   blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"; | ||||
| # | ||||
| # blur-kern = '' | ||||
| blur-kern = "3x3box"; | ||||
|  | ||||
|  | ||||
| # Exclude conditions for background blur. | ||||
| # blur-background-exclude = [] | ||||
| blur-background-exclude = [ | ||||
|   "window_type = 'dock'", | ||||
|   "window_type = 'desktop'", | ||||
|   "_GTK_FRAME_EXTENTS@:c" | ||||
| ]; | ||||
|  | ||||
| ################################# | ||||
| #       General Settings        # | ||||
| ################################# | ||||
|  | ||||
| # Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers. | ||||
| # daemon = false | ||||
|  | ||||
| # Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. | ||||
| # `xrender` is the default one. | ||||
| # | ||||
| # backend = 'glx' | ||||
| backend = "xrender"; | ||||
|  | ||||
| # Enable/disable VSync. | ||||
| # vsync = false | ||||
| vsync = true | ||||
|  | ||||
| # Enable remote control via D-Bus. See the *D-BUS API* section below for more details. | ||||
| # dbus = false | ||||
|  | ||||
| # Try to detect WM windows (a non-override-redirect window with no | ||||
| # child that has 'WM_STATE') and mark them as active. | ||||
| # | ||||
| # mark-wmwin-focused = false | ||||
| mark-wmwin-focused = true; | ||||
|  | ||||
| # Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused. | ||||
| # mark-ovredir-focused = false | ||||
| mark-ovredir-focused = true; | ||||
|  | ||||
| # Try to detect windows with rounded corners and don't consider them | ||||
| # shaped windows. The accuracy is not very high, unfortunately. | ||||
| # | ||||
| # detect-rounded-corners = false | ||||
| detect-rounded-corners = true; | ||||
|  | ||||
| # Detect '_NET_WM_OPACITY' on client windows, useful for window managers | ||||
| # not passing '_NET_WM_OPACITY' of client windows to frame windows. | ||||
| # | ||||
| # detect-client-opacity = false | ||||
| detect-client-opacity = true; | ||||
|  | ||||
| # Specify refresh rate of the screen. If not specified or 0, picom will | ||||
| # try detecting this with X RandR extension. | ||||
| # | ||||
| # refresh-rate = 60 | ||||
|  | ||||
| # Limit picom to repaint at most once every 1 / 'refresh_rate' second to | ||||
| # boost performance. This should not be used with | ||||
| #   vsync drm/opengl/opengl-oml | ||||
| # as they essentially does sw-opti's job already, | ||||
| # unless you wish to specify a lower refresh rate than the actual value. | ||||
| # | ||||
| # sw-opti = | ||||
|  | ||||
| # Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window, | ||||
| # rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy, | ||||
| # provided that the WM supports it. | ||||
| # | ||||
| # use-ewmh-active-win = false | ||||
|  | ||||
| # Unredirect all windows if a full-screen opaque window is detected, | ||||
| # to maximize performance for full-screen windows. Known to cause flickering | ||||
| # when redirecting/unredirecting windows. | ||||
| # | ||||
| # unredir-if-possible = false | ||||
|  | ||||
| # Delay before unredirecting the window, in milliseconds. Defaults to 0. | ||||
| # unredir-if-possible-delay = 0 | ||||
|  | ||||
| # Conditions of windows that shouldn't be considered full-screen for unredirecting screen. | ||||
| # unredir-if-possible-exclude = [] | ||||
|  | ||||
| # Use 'WM_TRANSIENT_FOR' to group windows, and consider windows | ||||
| # in the same group focused at the same time. | ||||
| # | ||||
| # detect-transient = false | ||||
| detect-transient = true | ||||
|  | ||||
| # Use 'WM_CLIENT_LEADER' to group windows, and consider windows in the same | ||||
| # group focused at the same time. 'WM_TRANSIENT_FOR' has higher priority if | ||||
| # detect-transient is enabled, too. | ||||
| # | ||||
| # detect-client-leader = false | ||||
| detect-client-leader = true | ||||
|  | ||||
| # Resize damaged region by a specific number of pixels. | ||||
| # A positive value enlarges it while a negative one shrinks it. | ||||
| # If the value is positive, those additional pixels will not be actually painted | ||||
| # to screen, only used in blur calculation, and such. (Due to technical limitations, | ||||
| # with use-damage, those pixels will still be incorrectly painted to screen.) | ||||
| # Primarily used to fix the line corruption issues of blur, | ||||
| # in which case you should use the blur radius value here | ||||
| # (e.g. with a 3x3 kernel, you should use `--resize-damage 1`, | ||||
| # with a 5x5 one you use `--resize-damage 2`, and so on). | ||||
| # May or may not work with *--glx-no-stencil*. Shrinking doesn't function correctly. | ||||
| # | ||||
| # resize-damage = 1 | ||||
|  | ||||
| # Specify a list of conditions of windows that should be painted with inverted color. | ||||
| # Resource-hogging, and is not well tested. | ||||
| # | ||||
| # invert-color-include = [] | ||||
|  | ||||
| # GLX backend: Avoid using stencil buffer, useful if you don't have a stencil buffer. | ||||
| # Might cause incorrect opacity when rendering transparent content (but never | ||||
| # practically happened) and may not work with blur-background. | ||||
| # My tests show a 15% performance boost. Recommended. | ||||
| # | ||||
| # glx-no-stencil = false | ||||
|  | ||||
| # GLX backend: Avoid rebinding pixmap on window damage. | ||||
| # Probably could improve performance on rapid window content changes, | ||||
| # but is known to break things on some drivers (LLVMpipe, xf86-video-intel, etc.). | ||||
| # Recommended if it works. | ||||
| # | ||||
| # glx-no-rebind-pixmap = false | ||||
|  | ||||
| # Disable the use of damage information. | ||||
| # This cause the whole screen to be redrawn everytime, instead of the part of the screen | ||||
| # has actually changed. Potentially degrades the performance, but might fix some artifacts. | ||||
| # The opposing option is use-damage | ||||
| # | ||||
| # no-use-damage = false | ||||
| use-damage = true | ||||
|  | ||||
| # Use X Sync fence to sync clients' draw calls, to make sure all draw | ||||
| # calls are finished before picom starts drawing. Needed on nvidia-drivers | ||||
| # with GLX backend for some users. | ||||
| # | ||||
| # xrender-sync-fence = false | ||||
|  | ||||
| # GLX backend: Use specified GLSL fragment shader for rendering window contents. | ||||
| # See `compton-default-fshader-win.glsl` and `compton-fake-transparency-fshader-win.glsl` | ||||
| # in the source tree for examples. | ||||
| # | ||||
| # glx-fshader-win = '' | ||||
|  | ||||
| # Force all windows to be painted with blending. Useful if you | ||||
| # have a glx-fshader-win that could turn opaque pixels transparent. | ||||
| # | ||||
| # force-win-blend = false | ||||
|  | ||||
| # Do not use EWMH to detect fullscreen windows. | ||||
| # Reverts to checking if a window is fullscreen based only on its size and coordinates. | ||||
| # | ||||
| # no-ewmh-fullscreen = false | ||||
|  | ||||
| # Dimming bright windows so their brightness doesn't exceed this set value. | ||||
| # Brightness of a window is estimated by averaging all pixels in the window, | ||||
| # so this could comes with a performance hit. | ||||
| # Setting this to 1.0 disables this behaviour. Requires --use-damage to be disabled. (default: 1.0) | ||||
| # | ||||
| # max-brightness = 1.0 | ||||
|  | ||||
| # Make transparent windows clip other windows like non-transparent windows do, | ||||
| # instead of blending on top of them. | ||||
| # | ||||
| # transparent-clipping = false | ||||
|  | ||||
| # Set the log level. Possible values are: | ||||
| #  "trace", "debug", "info", "warn", "error" | ||||
| # in increasing level of importance. Case doesn't matter. | ||||
| # If using the "TRACE" log level, it's better to log into a file | ||||
| # using *--log-file*, since it can generate a huge stream of logs. | ||||
| # | ||||
| # log-level = "debug" | ||||
| log-level = "warn"; | ||||
|  | ||||
| # Set the log file. | ||||
| # If *--log-file* is never specified, logs will be written to stderr. | ||||
| # Otherwise, logs will to written to the given file, though some of the early | ||||
| # logs might still be written to the stderr. | ||||
| # When setting this option from the config file, it is recommended to use an absolute path. | ||||
| # | ||||
| # log-file = '/path/to/your/log/file' | ||||
|  | ||||
| # Show all X errors (for debugging) | ||||
| # show-all-xerrors = false | ||||
|  | ||||
| # Write process ID to a file. | ||||
| # write-pid-path = '/path/to/your/log/file' | ||||
|  | ||||
| # Window type settings | ||||
| # | ||||
| # 'WINDOW_TYPE' is one of the 15 window types defined in EWMH standard: | ||||
| #     "unknown", "desktop", "dock", "toolbar", "menu", "utility", | ||||
| #     "splash", "dialog", "normal", "dropdown_menu", "popup_menu", | ||||
| #     "tooltip", "notification", "combo", and "dnd". | ||||
| # | ||||
| # Following per window-type options are available: :: | ||||
| # | ||||
| #   fade, shadow::: | ||||
| #     Controls window-type-specific shadow and fade settings. | ||||
| # | ||||
| #   opacity::: | ||||
| #     Controls default opacity of the window type. | ||||
| # | ||||
| #   focus::: | ||||
| #     Controls whether the window of this type is to be always considered focused. | ||||
| #     (By default, all window types except "normal" and "dialog" has this on.) | ||||
| # | ||||
| #   full-shadow::: | ||||
| #     Controls whether shadow is drawn under the parts of the window that you | ||||
| #     normally won't be able to see. Useful when the window has parts of it | ||||
| #     transparent, and you want shadows in those areas. | ||||
| # | ||||
| #   redir-ignore::: | ||||
| #     Controls whether this type of windows should cause screen to become | ||||
| #     redirected again after been unredirected. If you have unredir-if-possible | ||||
| #     set, and doesn't want certain window to cause unnecessary screen redirection, | ||||
| #     you can set this to `true`. | ||||
| # | ||||
| wintypes: | ||||
| { | ||||
|   tooltip = { fade = true; shadow = true; opacity = 1; focus = true; full-shadow = false; }; | ||||
|   notification = { shadow = true; } | ||||
|   dock = { shadow = false; opacity = 1; } | ||||
|   dnd = { shadow = false; } | ||||
|   popup_menu = { opacity = 1; } | ||||
|   dropdown_menu = { opacity = 1; } | ||||
| }; | ||||
| @@ -1 +0,0 @@ | ||||
| /home/rad4day/.dotfiles/polybar/config.ini | ||||
| @@ -1,326 +0,0 @@ | ||||
| ;========================================================== | ||||
| ; | ||||
| ; | ||||
| ;   ██████╗  ██████╗ ██╗  ██╗   ██╗██████╗  █████╗ ██████╗ | ||||
| ;   ██╔══██╗██╔═══██╗██║  ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ | ||||
| ;   ██████╔╝██║   ██║██║   ╚████╔╝ ██████╔╝███████║██████╔╝ | ||||
| ;   ██╔═══╝ ██║   ██║██║    ╚██╔╝  ██╔══██╗██╔══██║██╔══██╗ | ||||
| ;   ██║     ╚██████╔╝███████╗██║   ██████╔╝██║  ██║██║  ██║ | ||||
| ;   ╚═╝      ╚═════╝ ╚══════╝╚═╝   ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝ | ||||
| ; | ||||
| ; | ||||
| ;   To learn more about how to configure Polybar | ||||
| ;   go to https://github.com/polybar/polybar | ||||
| ; | ||||
| ;   The README contains a lot of information | ||||
| ; | ||||
| ;========================================================== | ||||
|  | ||||
| [colors] | ||||
| ;background = ${xrdb:color0:#222} | ||||
| background = #CC222222 | ||||
| background-alt = #7744444 | ||||
| ;foreground = ${xrdb:color7:#222} | ||||
| foreground = #dfdfdf | ||||
| foreground-alt = #dfdfdf | ||||
| primary = #ffb52a | ||||
| secondary = #e60053 | ||||
| alert = #bd2c40 | ||||
|  | ||||
| [bar/main] | ||||
| enable-ipc = true | ||||
| ;monitor = ${env:MONITOR:HDMI-1} | ||||
| width = 100% | ||||
| height = 32 | ||||
| ;offset-x = 1% | ||||
| ;offset-y = 1% | ||||
| radius = 6.0 | ||||
| fixed-center = true | ||||
|  | ||||
| background = ${colors.background} | ||||
| foreground = ${colors.foreground} | ||||
|  | ||||
| line-size = 3 | ||||
| line-color = #f00 | ||||
|  | ||||
| border-size = 0 | ||||
| border-color = #00000000 | ||||
|  | ||||
| padding-left = 0 | ||||
| padding-right = 2 | ||||
|  | ||||
| module-margin-left = 1 | ||||
| module-margin-right = 2 | ||||
|  | ||||
| font-0 = fixed:pixelsize=10;1 | ||||
| font-1 = siji:pixelsize=10;1 | ||||
| font-2 = FantasqueSansMono Nerd Font:style=Regular:scale=8;size=1;1 | ||||
| font-3 = Noto Color Emoji:style=Regular:scale=8;size=1;1 | ||||
|  | ||||
| modules-left   = i3 heart spotify xwindow | ||||
| modules-center = date dunst info-wifionice | ||||
| modules-right  = bluetooth filesystem pulseaudio network-networkmanager battery cpu temperature | ||||
|  | ||||
| tray-position = right | ||||
| tray-padding = 2 | ||||
| tray-foreground = ${colors.foreground} | ||||
| tray-background = ${colors.background} | ||||
|  | ||||
| ;wm-restack = bspwm | ||||
| wm-restack = i3 | ||||
|  | ||||
| ;override-redirect = true | ||||
|  | ||||
| ;scroll-up = bspwm-desknext | ||||
| ;scroll-down = bspwm-deskprev | ||||
|  | ||||
| scroll-up = i3wm-wsnext | ||||
| scroll-down = i3wm-wsprev | ||||
|  | ||||
| cursor-click = pointer | ||||
| cursor-scroll = pointer | ||||
|  | ||||
| [module/heart] | ||||
| type = custom/text | ||||
| content = ♥ | ||||
| content-foreground=#D24D57 | ||||
| content-padding=2 | ||||
| click-left=dunstctl history-pop | ||||
|  | ||||
| [module/xwindow] | ||||
| type = internal/xwindow | ||||
| label = %title:0:30:...% | ||||
|  | ||||
| [module/filesystem] | ||||
| type = internal/fs | ||||
| interval = 25 | ||||
|  | ||||
| mount-0 = / | ||||
|  | ||||
| label-mounted = root: %percentage_used%% | ||||
| label-unmounted = %mountpoint% not mounted | ||||
| label-unmounted-foreground = ${colors.foreground-alt} | ||||
| click-left = thunar & | ||||
|  | ||||
| [module/i3] | ||||
| type = internal/i3 | ||||
| format = <label-state> <label-mode> | ||||
| index-sort = true | ||||
| wrapping-scroll = false | ||||
|  | ||||
| ; Only show workspaces on the same output as the bar | ||||
| ;pin-workspaces = true | ||||
|  | ||||
| label-mode-padding = 2 | ||||
| label-mode-foreground = #000 | ||||
| label-mode-background = ${colors.primary} | ||||
|  | ||||
| ; focused = Active workspace on focused monitor | ||||
| label-focused = %icon% %name% | ||||
| label-focused-background = ${colors.background-alt} | ||||
| label-focused-underline = #FFFFFF | ||||
| label-focused-padding = 2 | ||||
|  | ||||
| ; unfocused = Inactive workspace on any monitor | ||||
| label-unfocused = %icon% %name% | ||||
| label-unfocused-padding = 2 | ||||
|  | ||||
| ; visible = Active workspace on unfocused monitor | ||||
| label-visible = %icon% %name% | ||||
| label-visible-background = ${self.label-focused-background} | ||||
| label-visible-underline = ${colors.primary} | ||||
| label-visible-padding = ${self.label-focused-padding} | ||||
|  | ||||
| ; urgent = Workspace with urgency hint set | ||||
| label-urgent = %icon% %name% | ||||
| label-urgent-background = ${colors.alert} | ||||
| label-urgent-padding = 2 | ||||
|  | ||||
| ; Separator in between workspaces | ||||
| ; label-separator = | | ||||
|  | ||||
|  | ||||
| [module/spotify] | ||||
| type = custom/script | ||||
| interval = 1 | ||||
| format-prefix = "" | ||||
| format = <label> | ||||
| exec = python3 /home/rad4day/Documents/src/polybar-spotify/spotify_status.py -f '{play_pause}   {song} -- {artist}' -p , | ||||
| format-underline = #1db954 | ||||
|  | ||||
|  | ||||
| [module/xbacklight] | ||||
| type = internal/xbacklight | ||||
|  | ||||
| format = <label> <bar> | ||||
| label = BL | ||||
|  | ||||
| bar-width = 10 | ||||
| bar-indicator = | | ||||
| bar-indicator-foreground = #fff | ||||
| bar-indicator-font = 2 | ||||
| bar-fill = ─ | ||||
| bar-fill-font = 2 | ||||
| bar-fill-foreground = #9f78e1 | ||||
| bar-empty = ─ | ||||
| bar-empty-font = 2 | ||||
| bar-empty-foreground = ${colors.foreground-alt} | ||||
|  | ||||
| [module/backlight-acpi] | ||||
| inherit = module/xbacklight | ||||
| type = internal/backlight | ||||
| card = intel_backlight | ||||
|  | ||||
| [module/cpu] | ||||
| type = internal/cpu | ||||
| interval = 2 | ||||
| format-prefix = " " | ||||
| format-prefix-foreground = ${colors.foreground-alt} | ||||
| format-underline = #f90000 | ||||
| label = %percentage:2%% | ||||
|  | ||||
| [module/memory] | ||||
| type = internal/memory | ||||
| interval = 2 | ||||
| format-prefix = " " | ||||
| format-prefix-foreground = ${colors.foreground-alt} | ||||
| format-underline = #4bffdc | ||||
| label = %percentage_used%% | ||||
|  | ||||
| [module/date] | ||||
| type = internal/date | ||||
| interval = 5 | ||||
|  | ||||
| date = " %A %d %B" | ||||
| date-alt = " %Y-%m-%d" | ||||
|  | ||||
| time = %H:%M | ||||
| time-alt = %H:%M:%S | ||||
|  | ||||
| format-prefix =  | ||||
| format-prefix-foreground = ${colors.foreground-alt} | ||||
| ;format-underline = #0a6cf5 | ||||
|  | ||||
| label = %date% %time% | ||||
|  | ||||
| [module/pulseaudio] | ||||
| type = internal/pulseaudio | ||||
|  | ||||
| format-volume = <ramp-volume> <label-volume> | ||||
| label-volume = %percentage%% | ||||
| label-volume-foreground = ${root.foreground} | ||||
|  | ||||
| label-muted = 🔇 muted | ||||
| label-muted-foreground = #666 | ||||
|  | ||||
| ; Only applies if <ramp-volume> is used | ||||
| ramp-volume-0 = 🔈 | ||||
| ramp-volume-1 = 🔉 | ||||
| ramp-volume-2 = 🔊 | ||||
|  | ||||
| click-right = pavucontrol | ||||
|  | ||||
| use-ui-max = false | ||||
| interval = 5 | ||||
|  | ||||
|  | ||||
| [module/battery] | ||||
| type = internal/battery | ||||
| battery = BAT1 | ||||
| adapter = ACAD | ||||
| full-at = 95 | ||||
|  | ||||
| format-charging =  <label-charging> | ||||
| format-charging-underline = #ffb52a | ||||
|  | ||||
| format-discharging = <animation-discharging> <label-discharging> | ||||
| format-discharging-underline = ${self.format-charging-underline} | ||||
|  | ||||
| format-full-prefix = " " | ||||
| format-full-prefix-foreground = ${colors.foreground-alt} | ||||
| format-full-underline = ${self.format-charging-underline} | ||||
|  | ||||
| ramp-capacity-0 =  | ||||
| ramp-capacity-1 =  | ||||
| ramp-capacity-2 =  | ||||
| ramp-capacity-foreground = ${colors.foreground-alt} | ||||
|  | ||||
| animation-charging-0 =  | ||||
| animation-charging-1 =  | ||||
| animation-charging-2 =  | ||||
| animation-charging-foreground = ${colors.foreground-alt} | ||||
| animation-charging-framerate = 750 | ||||
|  | ||||
| animation-discharging-0 =  | ||||
| animation-discharging-1 =  | ||||
| animation-discharging-2 =  | ||||
| animation-discharging-foreground = ${colors.foreground-alt} | ||||
| animation-discharging-framerate = 750 | ||||
|  | ||||
| time-format = %H:%m | ||||
| label-discharging = %percentage%% | ||||
|  | ||||
| [module/temperature] | ||||
| type = internal/temperature | ||||
| thermal-zone = 4 | ||||
| warn-temperature = 80 | ||||
|  | ||||
| format = <ramp> <label> | ||||
| format-underline = #f50a4d | ||||
| format-warn = <ramp> <label-warn> | ||||
| format-warn-underline = ${self.format-underline} | ||||
|  | ||||
| label = %temperature-c% | ||||
| label-warn = %temperature-c% | ||||
| label-warn-foreground = ${colors.secondary} | ||||
|  | ||||
| ramp-0 =  | ||||
| ramp-1 =  | ||||
| ramp-2 =  | ||||
| ramp-foreground = ${colors.foreground-alt} | ||||
|  | ||||
| [module/bluetooth] | ||||
| type = custom/script | ||||
| exec = rofi-bluetooth --status | ||||
| interval = 3 | ||||
| format-underline = #0082fc | ||||
| click-left = rofi-bluetooth & | ||||
|  | ||||
| [settings] | ||||
| screenchange-reload = true | ||||
| ;compositing-background = xor | ||||
| compositing-background = source | ||||
| compositing-foreground = over | ||||
| compositing-underline = over | ||||
| ;compositing-border = over | ||||
| ;pseudo-transparency = false | ||||
|  | ||||
| [global/wm] | ||||
| margin-top = 5 | ||||
| margin-bottom = 5 | ||||
|  | ||||
| [module/info-wifionice] | ||||
| type = custom/script | ||||
| exec = ~/Documents/src/polybar-scripts/polybar-scripts/info-wifionice/info-wifionice.sh | ||||
| tail = true | ||||
|  | ||||
| [module/dunst] | ||||
| type = custom/ipc | ||||
| initial = 1 | ||||
| hook-0 = echo "%{A1:dunstctl set-paused true && polybar-msg action '#dunst.hook.1':}%{A}" & | ||||
| hook-1 = echo "%{A1:dunstctl set-paused false && polybar-msg action '#dunst.hook.0':}%{A}" & | ||||
|  | ||||
| [module/network-networkmanager] | ||||
| type = custom/script | ||||
| format-underline = #55aa55 | ||||
| click-left = networkmanager_dmenu -i & | ||||
| exec = ~/Documents/src/polybar-scripts/polybar-scripts/network-networkmanager/network-networkmanager.sh | ||||
| tail = true | ||||
|  | ||||
| [module/timeleft] | ||||
| type = custom/script | ||||
| label = %output% hours till CTF concludes | ||||
| exec = echo "scale=2; ($(date -u -d "2023-06-10 21:59:59" "+%s") - $(date -u "+%s")) / 3600" | bc | ||||
| format-underline = #FF0000 | ||||
|  | ||||
| ; vim:ft=dosini | ||||
| @@ -1,71 +0,0 @@ | ||||
| ; Global settings for redshift | ||||
| [redshift] | ||||
| ; Set the day and night screen temperatures | ||||
| temp-day=5000 | ||||
| temp-night=3500 | ||||
|  | ||||
| ; Disable the smooth fade between temperatures when Redshift starts and stops. | ||||
| ; 0 will cause an immediate change between screen temperatures. | ||||
| ; 1 will gradually apply the new screen temperature over a couple of seconds. | ||||
| fade=1 | ||||
|  | ||||
| ; Solar elevation thresholds. | ||||
| ; By default, Redshift will use the current elevation of the sun to determine | ||||
| ; whether it is daytime, night or in transition (dawn/dusk). When the sun is | ||||
| ; above the degrees specified with elevation-high it is considered daytime and | ||||
| ; below elevation-low it is considered night. | ||||
| ;elevation-high=3 | ||||
| ;elevation-low=-6 | ||||
|  | ||||
| ; Custom dawn/dusk intervals. | ||||
| ; Instead of using the solar elevation, the time intervals of dawn and dusk | ||||
| ; can be specified manually. The times must be specified as HH:MM in 24-hour | ||||
| ; format. | ||||
| ;dawn-time=6:00-7:45 | ||||
| ;dusk-time=18:35-20:15 | ||||
|  | ||||
| ; Set the screen brightness. Default is 1.0. | ||||
| ;brightness=0.9 | ||||
| ; It is also possible to use different settings for day and night | ||||
| ; since version 1.8. | ||||
| ;brightness-day=0.7 | ||||
| ;brightness-night=0.4 | ||||
| ; Set the screen gamma (for all colors, or each color channel | ||||
| ; individually) | ||||
| gamma=0.8 | ||||
| ;gamma=0.8:0.7:0.8 | ||||
| ; This can also be set individually for day and night since | ||||
| ; version 1.10. | ||||
| ;gamma-day=0.8:0.7:0.8 | ||||
| ;gamma-night=0.6 | ||||
|  | ||||
| ; Set the location-provider: 'geoclue2', 'manual' | ||||
| ; type 'redshift -l list' to see possible values. | ||||
| ; The location provider settings are in a different section. | ||||
| location-provider=manual | ||||
|  | ||||
| ; Set the adjustment-method: 'randr', 'vidmode' | ||||
| ; type 'redshift -m list' to see all possible values. | ||||
| ; 'randr' is the preferred method, 'vidmode' is an older API. | ||||
| ; but works in some cases when 'randr' does not. | ||||
| ; The adjustment method settings are in a different section. | ||||
| adjustment-method=randr | ||||
|  | ||||
| ; Configuration of the location-provider: | ||||
| ; type 'redshift -l PROVIDER:help' to see the settings. | ||||
| ; ex: 'redshift -l manual:help' | ||||
| ; Keep in mind that longitudes west of Greenwich (e.g. the Americas) | ||||
| ; are negative numbers. | ||||
| [manual] | ||||
| lat=49.04 | ||||
| lon=8.44 | ||||
|  | ||||
| ; Configuration of the adjustment-method | ||||
| ; type 'redshift -m METHOD:help' to see the settings. | ||||
| ; ex: 'redshift -m randr:help' | ||||
| ; In this example, randr is configured to adjust only screen 0. | ||||
| ; Note that the numbering starts from 0, so this is actually the first screen. | ||||
| ; If this option is not specified, Redshift will try to adjust _all_ screens. | ||||
| ;[randr] | ||||
| ;screen=0 | ||||
| ;crtc=0 | ||||
		Reference in New Issue
	
	Block a user