From c97df6b70a475a67c1fd52d1d496fd642bf7a983 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Wed, 6 Jan 2021 08:41:25 +0100 Subject: [PATCH 001/103] [WIP] Gentoo / Sway --- Bin/build-kernel.sh | 9 ++ Bin/rebuild-world.sh | 4 + config/htop/htoprc | 13 ++- config/khard/khard.conf | 2 +- config/sway/config | 240 ++++++++++++++++++++++++++++++++++++++++ config/termite/config | 42 +++++++ config/wofi/config | 8 ++ config/wofi/style.css | 49 ++++++++ dotfiles/aliases | 4 +- dotfiles/profile | 10 -- dotfiles/tmux.conf | 9 +- dotfiles/zshrc | 46 ++++---- 12 files changed, 385 insertions(+), 51 deletions(-) create mode 100755 Bin/build-kernel.sh create mode 100755 Bin/rebuild-world.sh create mode 100644 config/sway/config create mode 100644 config/termite/config create mode 100644 config/wofi/config create mode 100644 config/wofi/style.css diff --git a/Bin/build-kernel.sh b/Bin/build-kernel.sh new file mode 100755 index 0000000..041da65 --- /dev/null +++ b/Bin/build-kernel.sh @@ -0,0 +1,9 @@ +#! /bin/bash + +cd /usr/src/linux + +make menuconfig + +make -j17 +make modules_install +make install diff --git a/Bin/rebuild-world.sh b/Bin/rebuild-world.sh new file mode 100755 index 0000000..1f9fe2c --- /dev/null +++ b/Bin/rebuild-world.sh @@ -0,0 +1,4 @@ +#! /bin/bash + +emerge --ask --verbose --update --changed-use --deep @world + diff --git a/config/htop/htoprc b/config/htop/htoprc index 778dd3d..dbf5c98 100644 --- a/config/htop/htoprc +++ b/config/htop/htoprc @@ -12,15 +12,18 @@ show_program_path=1 highlight_base_name=0 highlight_megabytes=1 highlight_threads=1 -tree_view=0 +tree_view=1 header_margin=1 detailed_cpu_time=0 cpu_count_from_zero=0 +show_cpu_usage=1 +show_cpu_frequency=0 update_process_names=0 account_guest_in_cpu_meter=0 color_scheme=0 +enable_mouse=1 delay=15 -left_meters=AllCPUs -left_meter_modes=1 -right_meters=Hostname Tasks LoadAverage Uptime Battery Blank Memory Swap -right_meter_modes=2 2 2 2 2 2 1 1 +left_meters=Hostname Tasks Blank Blank LeftCPUs4 Memory +left_meter_modes=2 2 2 2 1 1 +right_meters=Clock Uptime LoadAverage Blank RightCPUs4 Swap +right_meter_modes=2 2 2 2 1 1 diff --git a/config/khard/khard.conf b/config/khard/khard.conf index 6e49efb..423151b 100644 --- a/config/khard/khard.conf +++ b/config/khard/khard.conf @@ -19,7 +19,7 @@ preferred_phone_number_type = pref, cell, home preferred_email_address_type = pref, home, work [vcard] -private_objects = +private_objects = Jabber, Skype, Twitter preferred_version = 3.0 search_in_source_files = no skip_unparsable = no diff --git a/config/sway/config b/config/sway/config new file mode 100644 index 0000000..0723966 --- /dev/null +++ b/config/sway/config @@ -0,0 +1,240 @@ +# Keyboard definition +input "type:keyboard" { + xkb_layout us + xkb_variant intl + xkb_options "compose:rwin" +} + +# Screens definitions +output HDMI-A-3 resolution 2560x1080@75Hz position 0,0 adaptive_sync on +output DP-1 resolution 1920x1080@75Hz position 2560,0 + +### Variables +# +# Logo key. Use Mod1 for Alt. +set $mod Mod4 + +# Your preferred terminal emulator +set $term /usr/bin/termite + +# Your preferred application launcher +set $menu wofi -c ~/.config/wofi/config -s ~/.config/wofi/style.css -I + +# Screen capture +set $ps1 Print +set $ps2 Control+Print + +# Wallpaper +set $wallpapers_path $HOME/Nextcloud/images/Wallpaper/Rotation + +# Modals +set $modalWidth 1280 +set $modalHeight 800 + +### Gnome settings +# TODO: à vérifier/modifier +set $gnome-schema org.gnome.desktop.interface +exec_always { + gsettings set $gnome-schema gtk-theme 'NordSur-dark' + gsettings set $gnome-schema icon-theme 'Tela-circle-grey-dark' + gsettings set $gnome-schema font-name 'Roboto 10' + gsettings set $gnome-schema monospace-font-name 'Roboto Mono 10' + gsettings set $gnome-schema document-font-name 'Roboto 10' + gsettings set org.gnome.desktop.wm.preferences titlebar-font 'Roboto Bold 10' + gsettings set org.gnome.desktop.wm.preferences button-layout '' + gsettings set org.gnome.desktop.default-applications.terminal exec $term + gsettings set org.gnome.desktop.default-applications.terminal exec-arg '' +} + + +### Idle configuration +exec swayidle -w \ + timeout 300 'swaylock -f' \ + timeout 305 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ + before-sleep 'swaylock -f' + +### Autostart +exec nm-applet --indicator + +### Window config +for_window [app_id=".*"] border pixel 4 +for_window [class="Spotify"] move container to workspace 4 +for_window [class="Geeqie"] floating enable +for_window [app_id="termite" title="Pulse Mixer"] floating enable, resize set $modalWidth $modalHeight +for_window [app_id="termite" title="Calendar"] floating enable, resize set $modalWidth $modalHeight +for_window [app_id="termite" title="File Browser"] floating enable, resize set $modalWidth $modalHeight +for_window [app_id="termite" title="Ncdu"] floating enable, resize set $modalWidth $modalHeight +for_window [app_id="termite" title="Top"] floating enable, resize set $modalWidth $modalHeight + +### Key bindings +# +# Basics: +# + +# Start a terminal +bindsym $mod+Return exec $term + +# Kill focused window +bindsym control+q kill + +# Start your launcher +bindsym Alt+space exec $menu + +# lock screen +bindsym $mod+Alt+l exec swaylock -f + +# Reload the configuration file +bindsym $mod+Shift+r reload + +# Exit sway (logs you out of your Wayland session) +bindsym $mod+Shift+x exec swaynag -t warning -m 'End session?' -b 'Yes, exit sway' 'swaymsg exit' + +# File Browser +bindsym $mod+f exec "$term -t 'File Browser' -e ranger" + +# Disk Usage +bindsym $mod+Shift+f exec "$term -t 'Ncdu' -e 'ncdu --color=dark'" + +# Top +bindsym $mod+t exec "$term -t 'Top' -e bpytop" + +# Calendar +bindsym $mod+c exec "$term -t 'Calendar' -e khal interactive" + +# +# Multimedia keys +# + +bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5% +bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5% +bindsym --locked XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle +bindsym $mod+shift+p exec "$term -t 'Pulse Mixer' -e pulsemixer" + +bindsym XF86MonBrightnessDown exec brightnessctl set 5%- +bindsym XF86MonBrightnessUp exec brightnessctl set +5% + + + +# +# Screenshots +# +bindsym $ps1 exec grim ~/Pictures/ps_$(date +"%Y%m%d%H%M%S").png +bindsym $ps2 exec grim -g "$(slurp)" ~/Pictures/ps_$(date +"%Y%m%d%H%M%S").png + +# +# Moving around: +# +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right + +# Move focussed workspace +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right + +# +# Workspaces: +# +bindsym $mod+1 workspace number 1 +bindsym $mod+2 workspace number 2 +bindsym $mod+3 workspace number 3 +bindsym $mod+4 workspace number 4 +bindsym $mod+5 workspace number 5 +bindsym $mod+6 workspace number 6 +bindsym $mod+7 workspace number 7 +bindsym $mod+8 workspace number 8 +bindsym $mod+9 workspace number 9 +bindsym $mod+0 workspace number 10 +# Move focused container to workspace +bindsym $mod+Shift+1 move container to workspace number 1 +bindsym $mod+Shift+2 move container to workspace number 2 +bindsym $mod+Shift+3 move container to workspace number 3 +bindsym $mod+Shift+4 move container to workspace number 4 +bindsym $mod+Shift+5 move container to workspace number 5 +bindsym $mod+Shift+6 move container to workspace number 6 +bindsym $mod+Shift+7 move container to workspace number 7 +bindsym $mod+Shift+8 move container to workspace number 8 +bindsym $mod+Shift+9 move container to workspace number 9 +bindsym $mod+Shift+0 move container to workspace number 10 +# switch to previous/next workspace +bindsym Mod1+Control+a workspace prev_on_output +bindsym Mod1+Control+d workspace next_on_output + + +# +# Layout stuff: +# +bindsym $mod+backslash splith +bindsym $mod+minus splitv + +# Switch the current container between different layout styles +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +bindsym $mod+e layout toggle split + +# Make the current focus fullscreen +bindsym $mod+Mod1+f fullscreen + +# Toggle the current focus between tiling and floating mode +bindsym $mod+Shift+space floating toggle + +# Swap focus between the tiling area and the floating area +bindsym $mod+space focus mode_toggle + +# Toggle second screen (home / homeoffice mode) +bindsym $mod+p output DP-1 toggle + +# +# Resizing containers: +# +bindsym $mod+r mode "resize" + +mode "resize" { + bindsym h resize shrink width 10px + bindsym j resize grow height 10px + bindsym k resize shrink height 10px + bindsym l resize grow width 10px + + bindsym Return mode "default" + bindsym Escape mode "default" +} + +# +# Status Bar: +# +bar { + swaybar_command waybar +} + +# +# gaps +# +gaps inner 10 +gaps outer -5 +smart_gaps off + +# +# Titlebars +# +default_border pixel 4 +default_floating_border normal +hide_edge_borders smart +titlebar_padding 5 2 + +# +# Colors +# +client.focused #5e81ac #2e3440 #d8dee9 #5e81ac #5e81ac +client.focused_inactive #3b4252 #3b4252 #d8dee9 #4c566a #4c566a +client.unfocused #434c5e #434c5e #d8dee9 #4c566a #4c566a +client.urgent #bf616a #bf616a #d8dee9 #d08770 #d08770 + +# +# Background +# +output * bg $(find $wallpapers_path -type f | shuf -n 1) fill + +include /etc/sway/config.d/* diff --git a/config/termite/config b/config/termite/config new file mode 100644 index 0000000..a8b7582 --- /dev/null +++ b/config/termite/config @@ -0,0 +1,42 @@ +# Copyright (c) 2016-present Arctic Ice Studio +# Copyright (c) 2016-present Sven Greb + +# Project: Nord Termite +# Repository: https://github.com/arcticicestudio/nord-termite +# License: MIT + +[options] +allow_bold = true +bold_is_bright = true +clickable_url = true +cursor_shape = block +font = Droid Sans Mono Slashed for Powerline 9 + +[colors] +cursor = #d8dee9 +cursor_foreground = #2e3440 + +foreground = #d8dee9 +foreground_bold = #d8dee9 +background = #2e3440 + +highlight = #4c566a + +color0 = #3b4252 +color1 = #bf616a +color2 = #a3be8c +color3 = #ebcb8b +color4 = #81a1c1 +color5 = #b48ead +color6 = #88c0d0 +color7 = #e5e9f0 +color8 = #4c566a +color9 = #bf616a +color10 = #a3be8c +color11 = #ebcb8b +color12 = #81a1c1 +color13 = #b48ead +color14 = #8fbcbb +color15 = #eceff4 + +# vim: ft=dosini cms=#%s diff --git a/config/wofi/config b/config/wofi/config new file mode 100644 index 0000000..6fbd620 --- /dev/null +++ b/config/wofi/config @@ -0,0 +1,8 @@ +show=run +term=termite +layer=overlay +always_parse_args=true +allow_images=true +image_size=16 +width=25% +insensitive=true diff --git a/config/wofi/style.css b/config/wofi/style.css new file mode 100644 index 0000000..44d447c --- /dev/null +++ b/config/wofi/style.css @@ -0,0 +1,49 @@ +* { + font-family: "Sarasa Term SC"; + font-size: 18px; +} + +window { + margin: 0px; + border: 2px solid #8fbcbb; + background-color: #2e3440; + border-radius: 16px; +} + +#input { + margin: 5px; + color: #e5e9f0; + background-color: #2e3440; + border-radius: 16px; +} + +#inner-box { + margin: 5px; + border: none; + background-color: #2e3440; +} + +#outer-box { + margin: 5px; + border: none; + background-color: #2e3440; + border-radius: 16px; +} + +#scroll { + margin: 0px; + border: none; +} + +#text { + margin: 5px; + border: none; + color: #d8dee9; +} + +#entry:selected { + font-weight: bold; + border-radius: 0; + outline: none; + background-color: #3b4252; +} diff --git a/dotfiles/aliases b/dotfiles/aliases index 83be26e..6588aae 100644 --- a/dotfiles/aliases +++ b/dotfiles/aliases @@ -31,6 +31,6 @@ alias radioDoom='mpv -playlist http://kuorinka.duckdns.org:2718/doom.m3u' alias dh="dfc -t xfs,ext2 2>/dev/null" -alias vim="nvim" - alias irc="ssh malpartida -t tmux attach-session -t irc" + +alias getClass="swaymsg -t get_tree| grep $1" diff --git a/dotfiles/profile b/dotfiles/profile index a835bb0..611e068 100644 --- a/dotfiles/profile +++ b/dotfiles/profile @@ -26,13 +26,3 @@ if [ -n "$DISPLAY" ]; then fi export SSH_AUTH_SOCK="${XDG_RUNTIME_DIR:-/run/user/$(id -u)}/openssh_agent" - -# QMK HHKB -setxkbmap -option compose:rctrl -# True HHKB -setxkbmap -option compose:rwin - -# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. -export PATH="$PATH:$HOME/.rvm/bin" - -[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* diff --git a/dotfiles/tmux.conf b/dotfiles/tmux.conf index 9e813a4..9eff1f5 100644 --- a/dotfiles/tmux.conf +++ b/dotfiles/tmux.conf @@ -3,8 +3,6 @@ set -g base-index 1 set -g pane-base-index 1 # Status bar styling and content. -#set -g status-bg black -#set -g status-fg white set -g status-left '#S ' # Plugins @@ -25,10 +23,6 @@ bind-key J resize-pane -D bind-key K resize-pane -U bind-key L resize-pane -R -# Highlight the active window in the status bar. -set-window-option -g window-status-current-bg cyan -set-window-option -g window-status-current-fg black - # Don't prompt to kill panes/windows. bind-key x kill-pane bind-key & kill-window @@ -40,6 +34,9 @@ bind - split-window -v # Maximize pane, e.g. for copying. bind-key z resize-pane -Z +# Window title string (uses statusbar variables) +set -g set-titles-string '#T' + # Reload tmux conf. unbind r bind r source-file ~/.tmux.conf\; display "Reloaded conf." diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 425869c..7c4c998 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -83,6 +83,9 @@ plugins=( node ) +#zstyle :omz:plugins:ssh-agent agent-forwarding on +#zstyle :omz:plugins:ssh-agent identities id_rsa + source $ZSH/oh-my-zsh.sh # User configuration @@ -111,12 +114,6 @@ source $ZSH/oh-my-zsh.sh # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" -if [[ -n $SSH_CONNECTION ]]; then - export EDITOR='vim' -else - export EDITOR="mvim" -fi - zstyle -s ':completion:*:hosts' hosts _ssh_config [[ -r ~/.ssh/config ]] && _ssh_config+=($(cat ~/.ssh/config | sed -ne 's/Host[=\t ]//p')) zstyle ':completion:*:hosts' hosts $_ssh_config @@ -125,24 +122,6 @@ if [ $TILIX_ID ] || [ $VTE_VERSION ]; then source /etc/profile.d/vte.sh fi -#if [ -f ~/.ssh/agent.env ] ; then -# . ~/.ssh/agent.env > /dev/null -# if ! kill -0 $SSH_AGENT_PID > /dev/null 2>&1; then -# echo "Stale agent file found. Spawning a new agent. " -# eval `ssh-agent | tee ~/.ssh/agent.env` -# ssh-add -# fi -#else -# echo "Starting ssh-agent" -# eval `ssh-agent | tee ~/.ssh/agent.env` -# ssh-add -#fi - -if [ -z "$SSH_AUTH_SOCK" ] ; then - eval `ssh-agent -s` - ssh-add ~/.ssh/id_rsa -fi - # Load dircolors test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors) @@ -167,7 +146,20 @@ ssh() { tmux rename-window "zsh" } +if test -z "${XDG_RUNTIME_DIR}"; then + export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir + if ! test -d "${XDG_RUNTIME_DIR}"; then + mkdir "${XDG_RUNTIME_DIR}" + chmod 0700 "${XDG_RUNTIME_DIR}" + fi +fi -# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. -source /home/dbroqua/.rvm/scripts/rvm -export PATH="$PATH:$HOME/.rvm/bin" +export SSH_AUTH_SOCK=${HOME}/.ssh/agent +if ! pgrep -u ${USER} ssh-agent > /dev/null; then + rm -f ${SSH_AUTH_SOCK} +fi + +if [ ! -S ${SSH_AUTH_SOCK} ]; then + eval $(ssh-agent -a ${SSH_AUTH_SOCK} 2> /dev/null) + ssh-add +fi -- 2.39.2 From fbe6053c91ff9c47ca877673c54ab3c39a6704b5 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Wed, 6 Jan 2021 11:33:51 +0100 Subject: [PATCH 002/103] Added mako --- config/mako/config | 18 ++++++++++++++++++ config/sway/config | 17 ++++++++++++----- 2 files changed, 30 insertions(+), 5 deletions(-) create mode 100644 config/mako/config diff --git a/config/mako/config b/config/mako/config new file mode 100644 index 0000000..0e9858d --- /dev/null +++ b/config/mako/config @@ -0,0 +1,18 @@ +layer=top +font=Droid Sans Mono Slashed for Powerline 9 +max-visible=5 +anchor=top-right + +width=400 +height=150 +margin=20 +border-size=2 +border-radius=10 +max-icon-size=32 + +background-color=#4c566add +text-color=#d8dee9 +border-color=#434c5e + +default-timeout=10000 +ignore-timeout=1 diff --git a/config/sway/config b/config/sway/config index 0723966..1c522b5 100644 --- a/config/sway/config +++ b/config/sway/config @@ -5,15 +5,15 @@ input "type:keyboard" { xkb_options "compose:rwin" } -# Screens definitions -output HDMI-A-3 resolution 2560x1080@75Hz position 0,0 adaptive_sync on -output DP-1 resolution 1920x1080@75Hz position 2560,0 - ### Variables # # Logo key. Use Mod1 for Alt. set $mod Mod4 +# Displays +set $display1 HDMI-A-3 +set $display2 DP-1 + # Your preferred terminal emulator set $term /usr/bin/termite @@ -31,6 +31,10 @@ set $wallpapers_path $HOME/Nextcloud/images/Wallpaper/Rotation set $modalWidth 1280 set $modalHeight 800 +# Screens definitions +output $display1 resolution 2560x1080@75Hz position 0,0 adaptive_sync on +output $display2 resolution 1920x1080@75Hz position 2560,0 + ### Gnome settings # TODO: à vérifier/modifier set $gnome-schema org.gnome.desktop.interface @@ -54,7 +58,8 @@ exec swayidle -w \ before-sleep 'swaylock -f' ### Autostart -exec nm-applet --indicator +exec dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus +exec mako ### Window config for_window [app_id=".*"] border pixel 4 @@ -162,6 +167,8 @@ bindsym $mod+Shift+0 move container to workspace number 10 # switch to previous/next workspace bindsym Mod1+Control+a workspace prev_on_output bindsym Mod1+Control+d workspace next_on_output +# Default placement +workspace 1 output $display1 # -- 2.39.2 From 8890a5ad80ec2d521e4a70bf5a31349f5f3ae379 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Wed, 6 Jan 2021 11:34:08 +0100 Subject: [PATCH 003/103] Updated rx3 url --- dotfiles/aliases | 3 +-- dotfiles/vim/.netrwhist | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 dotfiles/vim/.netrwhist diff --git a/dotfiles/aliases b/dotfiles/aliases index 6588aae..57bdc55 100644 --- a/dotfiles/aliases +++ b/dotfiles/aliases @@ -21,8 +21,7 @@ alias rp='rpHQ' alias 107='mpv http://15363.live.streamtheworld.com/KSANFMAAC192.aac' alias onlyrock='mpv http://ns508363.ip-198-100-145.net:8080/onlyrockradio.mp3' alias fuzz='mpv http://18193.live.streamtheworld.com/SAM04AAC335.mp3' -#alias rx3='mpv http://37.59.28.208:8217/stream/1/' -alias rx3='mpv https://azura.shoutca.st/radio/8550/radio.mp3\?1588331736' +alias rx3='mpv https://cleo.shoutca.st/radio/8020/radio.mp3\?1608118952' alias heavy1='mpv https://listen.radioking.com/radio/119653/stream/159121' alias lagrosseRock='mpv http://hd.lagrosseradio.info/lagrosseradio-rock-192.mp3' alias lagrosseMetal='mpv http://hd.lagrosseradio.info/lagrosseradio-metal-192.mp3' diff --git a/dotfiles/vim/.netrwhist b/dotfiles/vim/.netrwhist new file mode 100644 index 0000000..85e70f6 --- /dev/null +++ b/dotfiles/vim/.netrwhist @@ -0,0 +1,3 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhistcnt =1 +let g:netrw_dirhist_1='/home/dbroqua/Projects/dbroqua/home/config/sway' -- 2.39.2 From 7d614e930319319a44467035fe05d7720fcb0f16 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 18:09:35 +0100 Subject: [PATCH 004/103] Added import from old conf --- Bin/build-kernel.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bin/build-kernel.sh b/Bin/build-kernel.sh index 041da65..cbe4e83 100755 --- a/Bin/build-kernel.sh +++ b/Bin/build-kernel.sh @@ -2,6 +2,8 @@ cd /usr/src/linux +make oldconfig + make menuconfig make -j17 -- 2.39.2 From a545f0f2ecf5c85f10a1e4c2a498af165b28d7e3 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 18:11:17 +0100 Subject: [PATCH 005/103] Updated file structure --- config/sway/config | 176 ++++++++++++++++++++++++++++++--------------- 1 file changed, 117 insertions(+), 59 deletions(-) diff --git a/config/sway/config b/config/sway/config index 1c522b5..0f3b698 100644 --- a/config/sway/config +++ b/config/sway/config @@ -5,8 +5,10 @@ input "type:keyboard" { xkb_options "compose:rwin" } + ### Variables # + # Logo key. Use Mod1 for Alt. set $mod Mod4 @@ -14,6 +16,36 @@ set $mod Mod4 set $display1 HDMI-A-3 set $display2 DP-1 +# Workspaces +set $wksp1 "1: Main" +set $wksp2 "2: Dev" +set $wksp3 "3: Social" +set $wksp4 "4: Music" +set $wksp5 "5: Graphics" +set $wksp6 "6: Games" +set $wksp7 "7: Remote" +set $wksp8 "8: -" +set $wksp9 "9: -" +set $wksp10 "10: -" + +# Colors +set $nord0 #2E3440 +set $nord1 #3B4252 +set $nord2 #434C5E +set $nord3 #4C566A +set $nord4 #D8DEE9 +set $nord5 #E5E9F0 +set $nord6 #ECEFF4 +set $nord7 #8FBCBB +set $nord8 #88C0D0 +set $nord9 #81A1C1 +set $nord10 #5E81AC +set $nord11 #BF616A +set $nord12 #D08770 +set $nord13 #EBCB8B +set $nord14 #A3BE8C +set $nord15 #B48EAD + # Your preferred terminal emulator set $term /usr/bin/termite @@ -35,16 +67,18 @@ set $modalHeight 800 output $display1 resolution 2560x1080@75Hz position 0,0 adaptive_sync on output $display2 resolution 1920x1080@75Hz position 2560,0 + ### Gnome settings -# TODO: à vérifier/modifier +# + set $gnome-schema org.gnome.desktop.interface exec_always { gsettings set $gnome-schema gtk-theme 'NordSur-dark' gsettings set $gnome-schema icon-theme 'Tela-circle-grey-dark' - gsettings set $gnome-schema font-name 'Roboto 10' - gsettings set $gnome-schema monospace-font-name 'Roboto Mono 10' - gsettings set $gnome-schema document-font-name 'Roboto 10' - gsettings set org.gnome.desktop.wm.preferences titlebar-font 'Roboto Bold 10' + gsettings set $gnome-schema font-name 'DejaVu Sans Mono 9' + gsettings set $gnome-schema monospace-font-name 'DejaVu Sans Mono 9' + gsettings set $gnome-schema document-font-name 'DejaVu Sans Mono 9' + gsettings set org.gnome.desktop.wm.preferences titlebar-font 'DejaVu Sans Mono 9' gsettings set org.gnome.desktop.wm.preferences button-layout '' gsettings set org.gnome.desktop.default-applications.terminal exec $term gsettings set org.gnome.desktop.default-applications.terminal exec-arg '' @@ -52,29 +86,49 @@ exec_always { ### Idle configuration +# + exec swayidle -w \ timeout 300 'swaylock -f' \ timeout 305 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ before-sleep 'swaylock -f' + ### Autostart +# + exec dbus-daemon --session --address=unix:path=$XDG_RUNTIME_DIR/bus exec mako +exec nextcloud +exec remmina -i +exec $term +exec firefox +exec spotify +exec signal-desktop + ### Window config +# + for_window [app_id=".*"] border pixel 4 -for_window [class="Spotify"] move container to workspace 4 + +# Auto move on Workspace +for_window [class="Signal"] move container to workspace $wksp3 +for_window [class="Slack"] move container to workspace $wksp3 +for_window [class="Spotify"] move container to workspace $wksp4 + +# Open as floating for_window [class="Geeqie"] floating enable +for_window [class="JViewer"] floating enable for_window [app_id="termite" title="Pulse Mixer"] floating enable, resize set $modalWidth $modalHeight for_window [app_id="termite" title="Calendar"] floating enable, resize set $modalWidth $modalHeight for_window [app_id="termite" title="File Browser"] floating enable, resize set $modalWidth $modalHeight for_window [app_id="termite" title="Ncdu"] floating enable, resize set $modalWidth $modalHeight for_window [app_id="termite" title="Top"] floating enable, resize set $modalWidth $modalHeight + ### Key bindings # -# Basics: -# # Start a terminal bindsym $mod+Return exec $term @@ -106,29 +160,24 @@ bindsym $mod+t exec "$term -t 'Top' -e bpytop" # Calendar bindsym $mod+c exec "$term -t 'Calendar' -e khal interactive" -# -# Multimedia keys -# +# Note +bindsym $mod+n exec "/home/dbroqua/Bin/zettlr" +# Multimedia keys bindsym --locked XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5% bindsym --locked XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5% bindsym --locked XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle bindsym $mod+shift+p exec "$term -t 'Pulse Mixer' -e pulsemixer" +# Brightness bindsym XF86MonBrightnessDown exec brightnessctl set 5%- bindsym XF86MonBrightnessUp exec brightnessctl set +5% - - -# # Screenshots -# bindsym $ps1 exec grim ~/Pictures/ps_$(date +"%Y%m%d%H%M%S").png bindsym $ps2 exec grim -g "$(slurp)" ~/Pictures/ps_$(date +"%Y%m%d%H%M%S").png -# # Moving around: -# bindsym $mod+h focus left bindsym $mod+j focus down bindsym $mod+k focus up @@ -140,40 +189,35 @@ bindsym $mod+Shift+j move down bindsym $mod+Shift+k move up bindsym $mod+Shift+l move right -# # Workspaces: -# -bindsym $mod+1 workspace number 1 -bindsym $mod+2 workspace number 2 -bindsym $mod+3 workspace number 3 -bindsym $mod+4 workspace number 4 -bindsym $mod+5 workspace number 5 -bindsym $mod+6 workspace number 6 -bindsym $mod+7 workspace number 7 -bindsym $mod+8 workspace number 8 -bindsym $mod+9 workspace number 9 -bindsym $mod+0 workspace number 10 -# Move focused container to workspace -bindsym $mod+Shift+1 move container to workspace number 1 -bindsym $mod+Shift+2 move container to workspace number 2 -bindsym $mod+Shift+3 move container to workspace number 3 -bindsym $mod+Shift+4 move container to workspace number 4 -bindsym $mod+Shift+5 move container to workspace number 5 -bindsym $mod+Shift+6 move container to workspace number 6 -bindsym $mod+Shift+7 move container to workspace number 7 -bindsym $mod+Shift+8 move container to workspace number 8 -bindsym $mod+Shift+9 move container to workspace number 9 -bindsym $mod+Shift+0 move container to workspace number 10 +bindsym $mod+1 workspace $wksp1 +bindsym $mod+2 workspace $wksp2 +bindsym $mod+3 workspace $wksp3 +bindsym $mod+4 workspace $wksp4 +bindsym $mod+5 workspace $wksp5 +bindsym $mod+6 workspace $wksp6 +bindsym $mod+7 workspace $wksp7 +bindsym $mod+8 workspace $wksp8 +bindsym $mod+9 workspace $wksp9 +bindsym $mod+0 workspace $wksp10 + # switch to previous/next workspace bindsym Mod1+Control+a workspace prev_on_output bindsym Mod1+Control+d workspace next_on_output -# Default placement -workspace 1 output $display1 +# Move focused container to workspace +bindsym $mod+Shift+1 move container to workspace $wksp1 +bindsym $mod+Shift+2 move container to workspace $wksp2 +bindsym $mod+Shift+3 move container to workspace $wksp3 +bindsym $mod+Shift+4 move container to workspace $wksp4 +bindsym $mod+Shift+5 move container to workspace $wksp5 +bindsym $mod+Shift+6 move container to workspace $wksp6 +bindsym $mod+Shift+7 move container to workspace $wksp7 +bindsym $mod+Shift+8 move container to workspace $wksp8 +bindsym $mod+Shift+9 move container to workspace $wksp9 +bindsym $mod+Shift+0 move container to workspace $wksp10 -# # Layout stuff: -# bindsym $mod+backslash splith bindsym $mod+minus splitv @@ -194,9 +238,8 @@ bindsym $mod+space focus mode_toggle # Toggle second screen (home / homeoffice mode) bindsym $mod+p output DP-1 toggle -# # Resizing containers: -# + bindsym $mod+r mode "resize" mode "resize" { @@ -209,39 +252,54 @@ mode "resize" { bindsym Escape mode "default" } + +### Default placement # -# Status Bar: + +workspace $wksp1 output $display1 + + +### Status Bar: # + bar { swaybar_command waybar } + +### gaps # -# gaps -# + gaps inner 10 gaps outer -5 smart_gaps off + +### Titlebars # -# Titlebars -# + default_border pixel 4 default_floating_border normal hide_edge_borders smart titlebar_padding 5 2 -# -# Colors -# -client.focused #5e81ac #2e3440 #d8dee9 #5e81ac #5e81ac -client.focused_inactive #3b4252 #3b4252 #d8dee9 #4c566a #4c566a -client.unfocused #434c5e #434c5e #d8dee9 #4c566a #4c566a -client.urgent #bf616a #bf616a #d8dee9 #d08770 #d08770 +### Colors # -# Background + +client.focused $nord10 $nord0 $nord4 $nord10 $nord10 +client.focused_inactive $nord1 $nord1 $nord4 $nord3 $nord3 +client.unfocused $nord2 $nord2 $nord4 $nord3 $nord3 +client.urgent $nord11 $nord11 $nord4 $nord12 $nord12 + + +### Background # + output * bg $(find $wallpapers_path -type f | shuf -n 1) fill + +### Include other +# + include /etc/sway/config.d/* -- 2.39.2 From 37b32d59eb08a2bf64c85c8dbac99443fb0da71f Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 18:11:30 +0100 Subject: [PATCH 006/103] Added Waybar --- config/waybar/config | 81 +++++++++++++++++++++++++++++++++++++++++ config/waybar/style.css | 59 ++++++++++++++++++++++++++++++ 2 files changed, 140 insertions(+) create mode 100644 config/waybar/config create mode 100644 config/waybar/style.css diff --git a/config/waybar/config b/config/waybar/config new file mode 100644 index 0000000..3c5d161 --- /dev/null +++ b/config/waybar/config @@ -0,0 +1,81 @@ +[ +{ + "layer": "bottom", + "position": "bottom", + "margin-right": 5, + "margin-left": 5, + "margin-bottom": 5, + "modules-left": [ + "sway/workspaces" + ], + "modules-center": [], + "modules-right": [ + "disk#1", + "disk#2", + "network", + "cpu", + "memory", + "pulseaudio", + "custom/multimedia_previous", + "custom/multimedia_current", + "custom/multimedia_next", + "clock", + "tray" + ], + "disk#1": { + "interval": 60, + "format": " {percentage_used:2}%", + "path": "/" + }, + "disk#2": { + "interval": 60, + "format": " {percentage_used:2}%", + "path": "/home" + }, + "network": { + "interface": "eno2", + "format": " {ipaddr}", + "format-disconnected": "-" + }, + "cpu": { + "format": " {load}%" + }, + "memory": { + "format": " {percentage}%" + }, + "pulseaudio": { + "format": "♪ {volume}% {icon}", + "format-bluetooth": "{volume}% {icon}", + "format-muted": "", + "format-icons": { + "headphone": "", + "hands-free": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": ["", ""] + }, + "scroll-step": 5, + "on-click": "pavucontrol" + }, + "custom/multimedia_previous": { + "format": "", + "on-click": "~/Bin/music.sh Previous" + }, + "custom/multimedia_current": { + "exec": "~/Bin/nowPlaying.sh", + "on-click": "~/Bin/music.sh PlayPause", + }, + "custom/multimedia_next": { + "format": "", + "on-click": "~/Bin/music.sh Next" + }, + "clock": { + "format": "{:%d/%m %H:%M}" + }, + "tray": { + "spacing": 10 + } +} +] diff --git a/config/waybar/style.css b/config/waybar/style.css new file mode 100644 index 0000000..ef64aea --- /dev/null +++ b/config/waybar/style.css @@ -0,0 +1,59 @@ +* { + font-size: 11px; + font-family: "Roboto", "Font Awesome 5 Free"; +} + +window#waybar { + color: #d8dee9; + background: none; + padding: 8px; + border-radius: 4px; +} + +/* Base styling for modules */ +#workspaces, +#disk, +#network, +#cpu, +#memory, +#pulseaudio, +#custom-spotify, +#custom-multimedia_previous, +#custom-multimedia_current, +#custom-multimedia_next, +#clock, +#tray { + padding: 0px 8px 0px 8px; + border-radius: 4px; + background: rgba(76, 86, 106, 0.7); + margin: 0 4px; +} + +#workspaces { + padding: 0; +} +#workspaces button { + padding: 0px 12px 0px 12px; + border-radius: 4px; + background: rgba(94,129,172,0.7); + margin: 0 1px; +} +#workspaces button.focused { + border-radius: 4px; + background: rgba(136, 192, 208, 0.7); + color: rgba(46, 52, 64, 1); +} +#workspaces button.urgent { + background: rgba(208, 135, 112, 0.7) +} + +#network.disconnected { + background: rgba(191, 97, 106, 0.7); +} +/* Style for buttons */ +#custom-spotify, +#custom-multimedia_previous, +#custom-multimedia_current, +#custom-multimedia_next { + background: rgba(94,129,172,0.7); +} -- 2.39.2 From 56200ce307402d455faa5ce72f75278657aede43 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:33:05 +0100 Subject: [PATCH 007/103] Updated gtk-3.0 --- .gitignore | 1 + config/gtk-3.0/bookmarks | 4 ---- config/gtk-3.0/settings.ini | 15 ++++++++------- 3 files changed, 9 insertions(+), 11 deletions(-) delete mode 100644 config/gtk-3.0/bookmarks diff --git a/.gitignore b/.gitignore index cd1bc36..8f9098d 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ Bin/calameco.sh config/i3/wallpaper dotfiles/vim/plugged dotfiles/vim/autoload/plug.vim +config/gtk-3.0/bookmarks diff --git a/config/gtk-3.0/bookmarks b/config/gtk-3.0/bookmarks deleted file mode 100644 index bea3211..0000000 --- a/config/gtk-3.0/bookmarks +++ /dev/null @@ -1,4 +0,0 @@ -file:///home/dbroqua/Nextcloud -file:///home/dbroqua/Projects Projects -file:///home/dbroqua/Nextcloud/Photos Photos -file:///home/dbroqua/Pictures diff --git a/config/gtk-3.0/settings.ini b/config/gtk-3.0/settings.ini index 91d4251..64d59df 100644 --- a/config/gtk-3.0/settings.ini +++ b/config/gtk-3.0/settings.ini @@ -1,16 +1,17 @@ [Settings] -gtk-theme-name=vimix-laptop -gtk-icon-theme-name=Tela -gtk-font-name=DejaVu Sans Mono for Powerline 10 -gtk-cursor-theme-name=Breeze_Snow +gtk-application-prefer-dark-theme=1 +gtk-theme-name=NordSur-dark +gtk-icon-theme-name=Tela-circle-grey-dark +gtk-font-name=Droid Sans Mono Slashed for Powerline 9 +gtk-cursor-theme-name=Adwaita gtk-cursor-theme-size=0 -gtk-toolbar-style=GTK_TOOLBAR_BOTH -gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-toolbar-style=GTK_TOOLBAR_ICONS +gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR gtk-button-images=1 gtk-menu-images=1 gtk-enable-event-sounds=1 gtk-enable-input-feedback-sounds=1 gtk-xft-antialias=1 gtk-xft-hinting=1 -gtk-xft-hintstyle=hintfull +gtk-xft-hintstyle=hintslight gtk-xft-rgba=rgb -- 2.39.2 From 0e16cdb7ab7d5b6ef658ea075e7f8709c6bb6e4d Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:36:09 +0100 Subject: [PATCH 008/103] Updated bpytop --- .gitignore | 1 + config/bpytop/bpytop.conf | 23 +++++++++++++++-------- config/bpytop/error.log | 6 ------ 3 files changed, 16 insertions(+), 14 deletions(-) delete mode 100644 config/bpytop/error.log diff --git a/.gitignore b/.gitignore index 8f9098d..cae2f69 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ config/i3/wallpaper dotfiles/vim/plugged dotfiles/vim/autoload/plug.vim config/gtk-3.0/bookmarks +config/bpytop/error.log diff --git a/config/bpytop/bpytop.conf b/config/bpytop/bpytop.conf index bfc6555..be3becf 100644 --- a/config/bpytop/bpytop.conf +++ b/config/bpytop/bpytop.conf @@ -1,11 +1,11 @@ -#? Config file for bpytop v. 1.0.43 +#? Config file for bpytop v. 1.0.54 #* Color theme, looks for a .theme file in "/usr/[local/]share/bpytop/themes" and "~/.config/bpytop/themes", "Default" for builtin default theme. #* Prefix name by a plus sign (+) for a theme located in user themes folder, i.e. color_theme="+monokai" color_theme="nord" #* If the theme set background should be shown, set to False if you want terminal background transparency -theme_background=False +theme_background=True #* Set bpytop view mode, "full" for everything shown, "proc" for cpu stats and processes, "stat" for cpu, mem, disks and net stats shown. view_mode=full @@ -13,9 +13,13 @@ view_mode=full #* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs. update_ms=2000 +#* Processes update multiplier, sets how often the process list is updated as a multiplier of "update_ms". +#* Set to 2 or higher to greatly decrease bpytop cpu usage. (Only integers) +proc_update_mult=2 + #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive", #* "cpu lazy" updates top process over time, "cpu responsive" updates top process directly. -proc_sorting="program" +proc_sorting="cpu lazy" #* Reverse sorting order, True or False. proc_reversed=False @@ -44,6 +48,9 @@ check_temp=True #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. cpu_sensor=Auto +#* Show temperatures for cpu cores also if check_temp is True and sensors has been found +show_coretemp=True + #* Draw a clock at top of screen, formatting according to strftime, empty string to disable. draw_clock="%X" @@ -53,8 +60,8 @@ background_update=True #* Custom cpu model name, empty string to disable. custom_cpu_name="" -#* Optional filter for shown disks, should be last folder in path of a mountpoint, "root" replaces "/", separate multiple values with comma. -#* Begin line with "exclude=" to change to exclude filter, oterwise defaults to "most include" filter. Example: disks_filter="exclude=boot, home" +#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with a comma ",". +#* Begin line with "exclude=" to change to exclude filter, oterwise defaults to "most include" filter. Example: disks_filter="exclude=/boot, /home/user" disks_filter="" #* Show graphs instead of meters for memory values. @@ -64,7 +71,7 @@ mem_graphs=True show_swap=True #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. -swap_disk=False +swap_disk=True #* If mem box should be split to also show disks info. show_disks=True @@ -83,13 +90,13 @@ net_sync=False net_color_fixed=False #* Show battery stats in top right if battery is present -show_battery=True +show_battery=False #* Show init screen at startup, the init screen is purely cosmetical show_init=True #* Enable check for new version from github.com/aristocratos/bpytop at start. -update_check=True +update_check=False #* Set loglevel for "~/.config/bpytop/error.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. diff --git a/config/bpytop/error.log b/config/bpytop/error.log deleted file mode 100644 index 214e4d3..0000000 --- a/config/bpytop/error.log +++ /dev/null @@ -1,6 +0,0 @@ -19/10/20 (16:22:23) | ERROR: Exception when sending signal 2 to pid 982 -19/10/20 (16:22:23) | ERROR: [Errno 1] Operation not permitted -Traceback (most recent call last): - File "/usr/local/lib/python3.7/dist-packages/bpytop.py", line 4683, in process_keys - os.kill(pid, sig) -PermissionError: [Errno 1] Operation not permitted -- 2.39.2 From cbf4dcd149aec8ac1bf8969f4a30cfdee9e512bc Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:39:37 +0100 Subject: [PATCH 009/103] Added swaylock --- config/swaylock/config | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/swaylock/config diff --git a/config/swaylock/config b/config/swaylock/config new file mode 100644 index 0000000..af3992b --- /dev/null +++ b/config/swaylock/config @@ -0,0 +1,22 @@ +image=/home/dbroqua/Nextcloud/images/Wallpaper/Nord\ Theme/lock.png +font=Droid Sans Mono Slashed for Powerline +indicator-radius=100 +indicator-thickness=20 + +key-hl-color=81a1c1 +separator-color=3b4252 + +layout-border-color=5e81ac +layout-bg-color=5e81ac +line-color=5e81ac + +inside-clear-color=5e81ac +inside-ver-color=81a1c1 +inside-wrong-color=bf616a + +ring-color=5e81ac +ring-clear-color=5e81ac +ring-ver-color=81a1c1 +ring-wrong-color=bf616a + +line-uses-inside -- 2.39.2 From 10ff257fdfed0ffc6e86a47d4e4245c20374db61 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:39:58 +0100 Subject: [PATCH 010/103] Updated current play --- config/waybar/config | 1 + 1 file changed, 1 insertion(+) diff --git a/config/waybar/config b/config/waybar/config index 3c5d161..9ef5a18 100644 --- a/config/waybar/config +++ b/config/waybar/config @@ -64,6 +64,7 @@ "on-click": "~/Bin/music.sh Previous" }, "custom/multimedia_current": { + "interval": 10, "exec": "~/Bin/nowPlaying.sh", "on-click": "~/Bin/music.sh PlayPause", }, -- 2.39.2 From 74ccf5d413c9a34e5fe0d4f23843228f2e90aa4d Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:52:50 +0100 Subject: [PATCH 011/103] Added interval for current music --- config/waybar/config | 1 + 1 file changed, 1 insertion(+) diff --git a/config/waybar/config b/config/waybar/config index 3c5d161..9ef5a18 100644 --- a/config/waybar/config +++ b/config/waybar/config @@ -64,6 +64,7 @@ "on-click": "~/Bin/music.sh Previous" }, "custom/multimedia_current": { + "interval": 10, "exec": "~/Bin/nowPlaying.sh", "on-click": "~/Bin/music.sh PlayPause", }, -- 2.39.2 From f24c511bc924e8f46f3005fe1f3c6bcf3e2610ef Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:53:52 +0100 Subject: [PATCH 012/103] Added swaylock --- config/swaylock/config | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/swaylock/config diff --git a/config/swaylock/config b/config/swaylock/config new file mode 100644 index 0000000..af3992b --- /dev/null +++ b/config/swaylock/config @@ -0,0 +1,22 @@ +image=/home/dbroqua/Nextcloud/images/Wallpaper/Nord\ Theme/lock.png +font=Droid Sans Mono Slashed for Powerline +indicator-radius=100 +indicator-thickness=20 + +key-hl-color=81a1c1 +separator-color=3b4252 + +layout-border-color=5e81ac +layout-bg-color=5e81ac +line-color=5e81ac + +inside-clear-color=5e81ac +inside-ver-color=81a1c1 +inside-wrong-color=bf616a + +ring-color=5e81ac +ring-clear-color=5e81ac +ring-ver-color=81a1c1 +ring-wrong-color=bf616a + +line-uses-inside -- 2.39.2 From a303c9816f89c48f35c8d3f1986affe01d4a3d78 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Thu, 7 Jan 2021 20:55:13 +0100 Subject: [PATCH 013/103] Cleaned repo --- .gitignore | 32 +- config/Tilix.dconf | 35 - config/alacritty/alacritty.yml | 196 ----- config/caja/accels | 161 ---- config/compton.conf | 58 -- config/gtk-2.0/gtkfilechooser.ini | 11 - config/hexchat/addon_checksum.conf | 1 - config/hexchat/chanopt.conf | 0 config/hexchat/hexchat.conf | 211 ------ config/hexchat/ignore.conf | 0 config/hexchat/logs/NETWORK/server.log | 7 - .../hexchat/logs/freenode/#debian-facile.log | 13 - config/hexchat/logs/freenode/#paulla.log | 9 - config/hexchat/logs/freenode/.log | 22 - config/hexchat/logs/freenode/freenode.log | 79 -- config/hexchat/logs/freenode/server.log | 3 - config/hexchat/notify.conf | 0 .../scrollback/freenode/#debian-facile.txt | 9 - .../hexchat/scrollback/freenode/#paulla.txt | 5 - config/hexchat/servlist.conf | 571 --------------- config/hexchat/sound.conf | 0 config/i3/config | 303 -------- config/i3/polybar.sh | 10 - config/i3status/config | 156 ---- config/libinput-gestures.conf | 2 - config/mimeapps.list | 33 - config/pavucontrol.ini | 7 - config/polybar/colors | 19 - config/polybar/config | 66 -- config/polybar/global | 33 - config/polybar/modules | 303 -------- .../polybar/scripts/inbox-imap-shellnetrc.sh | 12 - config/polybar/scripts/info-tmux-sessions.sh | 21 - .../scripts/vpn-networkmanager-status.sh | 9 - .../polybar/scripts/vpn-openvpn-isrunning.sh | 9 - config/polybar/settings | 5 - config/ristretto/accels.scm | 66 -- config/rofi/config | 1 - config/rofi/config.top | 3 - config/rofi/nord.rasi | 95 --- config/slip/config | 12 - .../default.target.wants/ssh-agent.service | 1 - .../user/ssh-agent.service.d/override.conf | 2 - config/terminator/config | 33 - .../xfconf/xfce-perchannel-xml/ristretto.xml | 17 - dotfiles/{aliases => .aliases} | 0 dotfiles/{dir_colors => .dir_colors} | 0 dotfiles/{exports => .exports} | 0 dotfiles/{gitconfig => .gitconfig} | 0 dotfiles/{profile => .profile} | 0 dotfiles/{tmux.conf => .tmux.conf} | 0 dotfiles/{vim => .vim}/.netrwhist | 0 .../{vim => .vim}/ftplugin/javascript.vim | 0 dotfiles/{vimrc => .vimrc} | 0 dotfiles/{zshrc => .zshrc} | 0 dotfiles/Xresources | 137 ---- dotfiles/compton.conf | 90 --- dotfiles/gtkrc-2.0 | 18 - etc/NetworkManager/dispatcher.d/99-wlan | 12 - old/dotfiles/vim/colors/nord.vim | 686 ------------------ old/dotfiles/vim_runtime/my_configs.vim | 135 ---- old/dotfiles/vimrc | 11 - 62 files changed, 3 insertions(+), 3727 deletions(-) delete mode 100644 config/Tilix.dconf delete mode 100644 config/alacritty/alacritty.yml delete mode 100644 config/caja/accels delete mode 100644 config/compton.conf delete mode 100644 config/gtk-2.0/gtkfilechooser.ini delete mode 100644 config/hexchat/addon_checksum.conf delete mode 100644 config/hexchat/chanopt.conf delete mode 100644 config/hexchat/hexchat.conf delete mode 100644 config/hexchat/ignore.conf delete mode 100644 config/hexchat/logs/NETWORK/server.log delete mode 100644 config/hexchat/logs/freenode/#debian-facile.log delete mode 100644 config/hexchat/logs/freenode/#paulla.log delete mode 100644 config/hexchat/logs/freenode/.log delete mode 100644 config/hexchat/logs/freenode/freenode.log delete mode 100644 config/hexchat/logs/freenode/server.log delete mode 100644 config/hexchat/notify.conf delete mode 100644 config/hexchat/scrollback/freenode/#debian-facile.txt delete mode 100644 config/hexchat/scrollback/freenode/#paulla.txt delete mode 100644 config/hexchat/servlist.conf delete mode 100644 config/hexchat/sound.conf delete mode 100644 config/i3/config delete mode 100755 config/i3/polybar.sh delete mode 100644 config/i3status/config delete mode 100644 config/libinput-gestures.conf delete mode 100644 config/mimeapps.list delete mode 100644 config/pavucontrol.ini delete mode 100644 config/polybar/colors delete mode 100644 config/polybar/config delete mode 100644 config/polybar/global delete mode 100644 config/polybar/modules delete mode 100755 config/polybar/scripts/inbox-imap-shellnetrc.sh delete mode 100755 config/polybar/scripts/info-tmux-sessions.sh delete mode 100755 config/polybar/scripts/vpn-networkmanager-status.sh delete mode 100755 config/polybar/scripts/vpn-openvpn-isrunning.sh delete mode 100644 config/polybar/settings delete mode 100644 config/ristretto/accels.scm delete mode 100644 config/rofi/config delete mode 100644 config/rofi/config.top delete mode 100644 config/rofi/nord.rasi delete mode 100644 config/slip/config delete mode 120000 config/systemd/user/default.target.wants/ssh-agent.service delete mode 100644 config/systemd/user/ssh-agent.service.d/override.conf delete mode 100644 config/terminator/config delete mode 100644 config/xfce4/xfconf/xfce-perchannel-xml/ristretto.xml rename dotfiles/{aliases => .aliases} (100%) rename dotfiles/{dir_colors => .dir_colors} (100%) rename dotfiles/{exports => .exports} (100%) rename dotfiles/{gitconfig => .gitconfig} (100%) rename dotfiles/{profile => .profile} (100%) rename dotfiles/{tmux.conf => .tmux.conf} (100%) rename dotfiles/{vim => .vim}/.netrwhist (100%) rename dotfiles/{vim => .vim}/ftplugin/javascript.vim (100%) rename dotfiles/{vimrc => .vimrc} (100%) rename dotfiles/{zshrc => .zshrc} (100%) delete mode 100644 dotfiles/Xresources delete mode 100644 dotfiles/compton.conf delete mode 100644 dotfiles/gtkrc-2.0 delete mode 100755 etc/NetworkManager/dispatcher.d/99-wlan delete mode 100755 old/dotfiles/vim/colors/nord.vim delete mode 100644 old/dotfiles/vim_runtime/my_configs.vim delete mode 100644 old/dotfiles/vimrc diff --git a/.gitignore b/.gitignore index cae2f69..766af6a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,8 @@ -fluxbox/lastwallpaper -fluxbox/apps -config/JetBrains -config/Nextcloud -config/VSCodium -config/dconf -config/libreoffice -config/pulse -config/spotify -local/share/Android Open Source Project -local/share/fonts -local/share/Google -local/share/gvfs-metadata -local/share/JetBrains -local/share/keyrings -local/share/meld -local/share/mime -local/share/Nextcloud -local/share/recently-used.xbel -local/share/Trash -config/Android Open Source Project -config/configstore -config/geary/account_* -local/share/geary -config/enchant -config/GIMP config/neomutt/accounts config/neomutt/signature Bin/calameco.sh -config/i3/wallpaper -dotfiles/vim/plugged -dotfiles/vim/autoload/plug.vim +dotfiles/.vim/plugged +dotfiles/.vim/autoload/plug.vim config/gtk-3.0/bookmarks config/bpytop/error.log +config/ranger/plugins/__pycache__ diff --git a/config/Tilix.dconf b/config/Tilix.dconf deleted file mode 100644 index 8af9e2d..0000000 --- a/config/Tilix.dconf +++ /dev/null @@ -1,35 +0,0 @@ -[profiles/2b7c4080-0ddd-46c5-8f23-563fd3ba789d] -foreground-color='#A1B0B8' -visible-name='Default' -login-shell=true -palette=['#252525', '#FF5252', '#C3D82C', '#FFC135', '#42A5F5', '#D81B60', '#00ACC1', '#F5F5F5', '#708284', '#FF5252', '#C3D82C', '#FFC135', '#42A5F5', '#D81B60', '#00ACC1', '#F5F5F5'] -badge-color='#AC7EA8' -badge-color-set=false -cursor-shape='underline' -cursor-colors-set=false -highlight-colors-set=false -use-system-font=false -bold-color-set=false -font='Droid Sans Mono for Powerline 10' -use-theme-colors=false -scrollback-unlimited=true -cursor-blink-mode='on' -background-color='#263238' -background-transparency-percent=12 - -[/] -quake-specific-monitor=0 -tab-position='left' -copy-on-select=true -auto-hide-mouse=true -terminal-title-style='small' -window-state=128 -theme-variant='dark' -session-name='${hostname}' -window-save-state=true - -[keybindings] -session-add-right='backslash' -win-switch-to-previous-session='Left' -session-add-down='minus' -win-switch-to-next-session='Right' diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml deleted file mode 100644 index 1b09ba1..0000000 --- a/config/alacritty/alacritty.yml +++ /dev/null @@ -1,196 +0,0 @@ -window: - dimensions: - columns: 80 - lines: 24 - - padding: - x: 5 - y: 10 - - decorations: full - -scrolling: - history: 10000 - - multiplier: 3 - -font: - size: 9 - - normal: - family: Droid Sans Mono Slashed for Powerline - style: Regular - - bold: - family: Droid Sans Mono Slashed for Powerline - # style: Bold - - italic: - family: Droid Sans Mono Slashed for Powerline - # style: Italic - -colors: - primary: - background: '#2e3440' - foreground: '#d8dee9' - dim_foreground: '#a5abb6' - cursor: - text: '#2e3440' - cursor: '#d8dee9' - vi_mode_cursor: - text: '#2e3440' - cursor: '#d8dee9' - selection: - text: CellForeground - background: '#4c566a' - search: - matches: - foreground: CellBackground - background: '#88c0d0' - bar: - background: '#434c5e' - foreground: '#d8dee9' - normal: - black: '#3b4252' - red: '#bf616a' - green: '#a3be8c' - yellow: '#ebcb8b' - blue: '#81a1c1' - magenta: '#b48ead' - cyan: '#88c0d0' - white: '#e5e9f0' - bright: - black: '#4c566a' - red: '#bf616a' - green: '#a3be8c' - yellow: '#ebcb8b' - blue: '#81a1c1' - magenta: '#b48ead' - cyan: '#8fbcbb' - white: '#eceff4' - dim: - black: '#373e4d' - red: '#94545d' - green: '#809575' - yellow: '#b29e75' - blue: '#68809a' - magenta: '#8c738c' - cyan: '#6d96a5' - white: '#aeb3bb' - -cursor: - style: - shape: Block - - blinking: Always - -preview_images: true - -background_opacity: 0.85 - -key_bindings: - - { key: V, mods: Control|Shift, action: Paste } - - { key: C, mods: Control|Shift, action: Copy } - - { key: Paste, action: Paste } - - { key: Copy, action: Copy } - - { key: Q, mods: Command, action: Quit } - - { key: W, mods: Command, action: Quit } - - { key: Insert, mods: Shift, action: PasteSelection } - - { key: Key0, mods: Control, action: ResetFontSize } - - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: NumpadSubtract, mods: Control, action: DecreaseFontSize } - - { key: Home, chars: "\x1bOH", mode: AppCursor } - - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - - { key: End, chars: "\x1bOF", mode: AppCursor } - - { key: End, chars: "\x1b[F", mode: ~AppCursor } - - { key: PageUp, mods: Shift, chars: "\x1b[5;2~" } - - { key: PageUp, mods: Control, chars: "\x1b[5;5~" } - - { key: PageUp, chars: "\x1b[5~" } - - { key: PageDown, mods: Shift, chars: "\x1b[6;2~" } - - { key: PageDown, mods: Control, chars: "\x1b[6;5~" } - - { key: PageDown, chars: "\x1b[6~" } - - { key: Tab, mods: Shift, chars: "\x1b[Z" } - - { key: Back, chars: "\x7f" } - - { key: Back, mods: Alt, chars: "\x1b\x7f" } - - { key: Insert, chars: "\x1b[2~" } - - { key: Delete, chars: "\x1b[3~" } - - { key: Left, mods: Shift, chars: "\x1b[1;2D" } - - { key: Left, mods: Control, chars: "\x1b[1;5D" } - - { key: Left, mods: Alt, chars: "\x1b[1;3D" } - - { key: Left, chars: "\x1b[D", mode: ~AppCursor } - - { key: Left, chars: "\x1bOD", mode: AppCursor } - - { key: Right, mods: Shift, chars: "\x1b[1;2C" } - - { key: Right, mods: Control, chars: "\x1b[1;5C" } - - { key: Right, mods: Alt, chars: "\x1b[1;3C" } - - { key: Right, chars: "\x1b[C", mode: ~AppCursor } - - { key: Right, chars: "\x1bOC", mode: AppCursor } - - { key: Up, mods: Shift, chars: "\x1b[1;2A" } - - { key: Up, mods: Control, chars: "\x1b[1;5A" } - - { key: Up, mods: Alt, chars: "\x1b[1;3A" } - - { key: Up, chars: "\x1b[A", mode: ~AppCursor } - - { key: Up, chars: "\x1bOA", mode: AppCursor } - - { key: Down, mods: Shift, chars: "\x1b[1;2B" } - - { key: Down, mods: Control, chars: "\x1b[1;5B" } - - { key: Down, mods: Alt, chars: "\x1b[1;3B" } - - { key: Down, chars: "\x1b[B", mode: ~AppCursor } - - { key: Down, chars: "\x1bOB", mode: AppCursor } - - { key: F1, chars: "\x1bOP" } - - { key: F2, chars: "\x1bOQ" } - - { key: F3, chars: "\x1bOR" } - - { key: F4, chars: "\x1bOS" } - - { key: F5, chars: "\x1b[15~" } - - { key: F6, chars: "\x1b[17~" } - - { key: F7, chars: "\x1b[18~" } - - { key: F8, chars: "\x1b[19~" } - - { key: F9, chars: "\x1b[20~" } - - { key: F10, chars: "\x1b[21~" } - - { key: F11, chars: "\x1b[23~" } - - { key: F12, chars: "\x1b[24~" } - - { key: F1, mods: Shift, chars: "\x1b[1;2P" } - - { key: F2, mods: Shift, chars: "\x1b[1;2Q" } - - { key: F3, mods: Shift, chars: "\x1b[1;2R" } - - { key: F4, mods: Shift, chars: "\x1b[1;2S" } - - { key: F5, mods: Shift, chars: "\x1b[15;2~" } - - { key: F6, mods: Shift, chars: "\x1b[17;2~" } - - { key: F7, mods: Shift, chars: "\x1b[18;2~" } - - { key: F8, mods: Shift, chars: "\x1b[19;2~" } - - { key: F9, mods: Shift, chars: "\x1b[20;2~" } - - { key: F10, mods: Shift, chars: "\x1b[21;2~" } - - { key: F11, mods: Shift, chars: "\x1b[23;2~" } - - { key: F12, mods: Shift, chars: "\x1b[24;2~" } - - { key: F1, mods: Control, chars: "\x1b[1;5P" } - - { key: F2, mods: Control, chars: "\x1b[1;5Q" } - - { key: F3, mods: Control, chars: "\x1b[1;5R" } - - { key: F4, mods: Control, chars: "\x1b[1;5S" } - - { key: F5, mods: Control, chars: "\x1b[15;5~" } - - { key: F6, mods: Control, chars: "\x1b[17;5~" } - - { key: F7, mods: Control, chars: "\x1b[18;5~" } - - { key: F8, mods: Control, chars: "\x1b[19;5~" } - - { key: F9, mods: Control, chars: "\x1b[20;5~" } - - { key: F10, mods: Control, chars: "\x1b[21;5~" } - - { key: F11, mods: Control, chars: "\x1b[23;5~" } - - { key: F12, mods: Control, chars: "\x1b[24;5~" } - - { key: F1, mods: Alt, chars: "\x1b[1;6P" } - - { key: F2, mods: Alt, chars: "\x1b[1;6Q" } - - { key: F3, mods: Alt, chars: "\x1b[1;6R" } - - { key: F4, mods: Alt, chars: "\x1b[1;6S" } - - { key: F5, mods: Alt, chars: "\x1b[15;6~" } - - { key: F6, mods: Alt, chars: "\x1b[17;6~" } - - { key: F7, mods: Alt, chars: "\x1b[18;6~" } - - { key: F8, mods: Alt, chars: "\x1b[19;6~" } - - { key: F9, mods: Alt, chars: "\x1b[20;6~" } - - { key: F10, mods: Alt, chars: "\x1b[21;6~" } - - { key: F11, mods: Alt, chars: "\x1b[23;6~" } - - { key: F12, mods: Alt, chars: "\x1b[24;6~" } - - { key: F1, mods: Super, chars: "\x1b[1;3P" } - - { key: F2, mods: Super, chars: "\x1b[1;3Q" } - - { key: F3, mods: Super, chars: "\x1b[1;3R" } - - { key: F4, mods: Super, chars: "\x1b[1;3S" } - - { key: F5, mods: Super, chars: "\x1b[15;3~" } - - { key: F6, mods: Super, chars: "\x1b[17;3~" } - - { key: F7, mods: Super, chars: "\x1b[18;3~" } - - { key: F8, mods: Super, chars: "\x1b[19;3~" } - - { key: F9, mods: Super, chars: "\x1b[20;3~" } - - { key: F10, mods: Super, chars: "\x1b[21;3~" } - - { key: F11, mods: Super, chars: "\x1b[23;3~" } - - { key: F12, mods: Super, chars: "\x1b[24;3~" } diff --git a/config/caja/accels b/config/caja/accels deleted file mode 100644 index 786f11c..0000000 --- a/config/caja/accels +++ /dev/null @@ -1,161 +0,0 @@ -; caja GtkAccelMap rc-file -*- scheme -*- -; this file is an automated accelerator map dump -; -; (gtk_accel_path "/DirViewActions/Trash" "") -; (gtk_accel_path "/DirViewActions/Save Search" "") -; (gtk_accel_path "/IconViewActions/Sort by Emblems" "") -; (gtk_accel_path "/DirViewActions/Start Volume" "") -; (gtk_accel_path "/NavigationActions/TabsNext" "Page_Down") -; (gtk_accel_path "/DirViewActions/Location Poll" "") -; (gtk_accel_path "/ShellActions/Go to Trash" "") -; (gtk_accel_path "/IconViewActions/Stretch" "") -; (gtk_accel_path "/DirViewActions/MoveToMenu" "") -; (gtk_accel_path "/ShellActions/ZoomInAccel" "equal") -; (gtk_accel_path "/DirViewActions/LocationTrash" "") -; (gtk_accel_path "/DirViewActions/RenameSelectAll" "F2") -; (gtk_accel_path "/ShellActions/About Caja" "") -; (gtk_accel_path "/DirViewActions/Undo" "z") -; (gtk_accel_path "/NavigationActions/Back" "Left") -; (gtk_accel_path "/DirViewActions/Location Start Volume" "") -; (gtk_accel_path "/DirViewActions/Format Volume" "") -; (gtk_accel_path "/DirViewActions/CopyToMenu" "") -; (gtk_accel_path "/DirViewActions/LocationRestoreFromTrash" "") -; (gtk_accel_path "/DirViewActions/Empty Trash" "") -; (gtk_accel_path "/ShellActions/Close" "w") -; (gtk_accel_path "/NavigationActions/Add Bookmark" "d") -; (gtk_accel_path "/IconViewActions/Manual Layout" "") -; (gtk_accel_path "/ShellActions/Zoom Normal" "0") -; (gtk_accel_path "/NavigationActions/Show Hide Extra Pane" "F3") -; (gtk_accel_path "/DirViewActions/Create Link" "m") -; (gtk_accel_path "/DirViewActions/LocationDelete" "") -; (gtk_accel_path "/DirViewActions/Mount Volume" "") -; (gtk_accel_path "/IconViewActions/Sort by Trash Time" "") -; (gtk_accel_path "/DirViewActions/OpenInNewTab" "o") -; (gtk_accel_path "/DirViewActions/OtherApplication2" "") -; (gtk_accel_path "/DirViewActions/OtherApplication1" "") -; (gtk_accel_path "/NavigationActions/Folder Window" "") -; (gtk_accel_path "/NavigationActions/Show Hide Statusbar" "") -; (gtk_accel_path "/NavigationActions/Tab9" "0") -; (gtk_accel_path "/ShellActions/Connect to Server" "") -; (gtk_accel_path "/ShellActions/Help" "") -; (gtk_accel_path "/NavigationActions/Tab6" "7") -; (gtk_accel_path "/NavigationActions/Clear History" "") -; (gtk_accel_path "/ShellActions/ZoomInAccel2" "KP_Add") -; (gtk_accel_path "/NavigationActions/Tab8" "9") -; (gtk_accel_path "/ShellActions/Caja Manual" "F1") -; (gtk_accel_path "/NavigationActions/ShowSearch" "f") -; (gtk_accel_path "/NavigationActions/Tab5" "6") -; (gtk_accel_path "/NavigationActions/Tab4" "5") -; (gtk_accel_path "/NavigationActions/Tab3" "4") -; (gtk_accel_path "/ShellActions/File" "") -; (gtk_accel_path "/NavigationActions/Tab1" "2") -; (gtk_accel_path "/NavigationActions/Tab7" "8") -; (gtk_accel_path "/DirViewActions/Copy" "c") -; (gtk_accel_path "/NavigationActions/TabsMoveRight" "Page_Down") -; (gtk_accel_path "/NavigationActions/TabsPrevious" "Page_Up") -; (gtk_accel_path "/ShellActions/Go to Network" "") -; (gtk_accel_path "/NavigationActions/Tab2" "3") -; (gtk_accel_path "/ClipboardActions/Paste" "v") -; (gtk_accel_path "/IconViewActions/Sort by Type" "") -; (gtk_accel_path "/ShellActions/View" "") -; (gtk_accel_path "/DirViewActions/New Empty File" "") -; (gtk_accel_path "/NavigationActions/Tab0" "1") -; (gtk_accel_path "/DirViewActions/Location Eject Volume" "") -; (gtk_accel_path "/IconViewActions/Unstretch" "") -; (gtk_accel_path "/ShellActions/Zoom Out" "minus") -; (gtk_accel_path "/NavigationActions/Show Hide Location Bar" "") -; (gtk_accel_path "/DirViewActions/OpenCloseParent" "Down") -; (gtk_accel_path "/DirViewActions/Open" "o") -; (gtk_accel_path "/DirViewActions/Self Format Volume" "") -; (gtk_accel_path "/NavigationActions/Bookmarks" "") -; (gtk_accel_path "/DirViewActions/Unmount Volume" "") -; (gtk_accel_path "/DirViewActions/Connect To Server Link" "") -; (gtk_accel_path "/DirViewActions/Location Mount Volume" "") -; (gtk_accel_path "/DirViewActions/Location Unmount Volume" "") -; (gtk_accel_path "/DirViewActions/Reset to Defaults" "") -; (gtk_accel_path "/DirViewActions/LocationOpenFolderWindow" "") -; (gtk_accel_path "/DirViewActions/Paste Files Into" "") -; (gtk_accel_path "/DirViewActions/LocationCut" "") -; (gtk_accel_path "/ShellActions/Zoom In" "plus") -; (gtk_accel_path "/DirViewActions/Self Eject Volume" "") -; (gtk_accel_path "/NavigationActions/SplitViewNextPane" "F6") -; (gtk_accel_path "/ClipboardActions/Select All" "a") -; (gtk_accel_path "/IconViewActions/Tighter Layout" "") -; (gtk_accel_path "/NavigationActions/Edit Bookmarks" "b") -; (gtk_accel_path "/DirViewActions/LocationCopy" "") -; (gtk_accel_path "/ClipboardActions/Copy" "c") -; (gtk_accel_path "/DirViewActions/OpenAccel" "Down") -; (gtk_accel_path "/DirViewActions/Open With" "") -; (gtk_accel_path "/ShellActions/Edit" "") -; (gtk_accel_path "/ShellActions/Up" "Up") -; (gtk_accel_path "/DirViewActions/Open Scripts Folder" "") -; (gtk_accel_path "/ClipboardActions/Cut" "x") -; (gtk_accel_path "/NavigationActions/Forward" "Right") -; (gtk_accel_path "/DirViewActions/New Documents" "") -; (gtk_accel_path "/NavigationActions/Go to Location" "l") -; (gtk_accel_path "/ShellActions/Reload" "r") -; (gtk_accel_path "/DirViewActions/Move to Home" "") -; (gtk_accel_path "/ShellActions/Backgrounds and Emblems" "") -; (gtk_accel_path "/DirViewActions/No Templates" "") -; (gtk_accel_path "/DirViewActions/Location Format Volume" "") -; (gtk_accel_path "/ShellActions/ZoomOutAccel" "KP_Subtract") -; (gtk_accel_path "/NavigationActions/SplitViewSameLocation" "") -; (gtk_accel_path "/DirViewActions/LocationPasteFilesInto" "") -; (gtk_accel_path "/IconViewActions/Sort by Size" "") -; (gtk_accel_path "/DirViewActions/Select All" "a") -; (gtk_accel_path "/DirViewActions/OpenAlternate" "w") -; (gtk_accel_path "/ShellActions/Preferences" "") -; (gtk_accel_path "/DirViewActions/Poll" "") -; (gtk_accel_path "/DirViewActions/Select Pattern" "s") -; (gtk_accel_path "/IconViewActions/Reversed Order" "") -; (gtk_accel_path "/ShellActions/Go to Computer" "") -; (gtk_accel_path "/NavigationActions/Go" "") -; (gtk_accel_path "/DirViewActions/Restore From Trash" "") -; (gtk_accel_path "/DirViewActions/Location Stop Volume" "") -; (gtk_accel_path "/DirViewActions/LocationProperties" "") -; (gtk_accel_path "/DirViewActions/Rename" "F2") -; (gtk_accel_path "/DirViewActions/Redo" "y") -; (gtk_accel_path "/ShellActions/Go to Templates" "") -; (gtk_accel_path "/DirViewActions/LocationOpenInNewTab" "") -; (gtk_accel_path "/DirViewActions/Self Start Volume" "") -; (gtk_accel_path "/DirViewActions/Move to next pane" "") -; (gtk_accel_path "/DirViewActions/OpenFolderWindow" "") -; (gtk_accel_path "/ShellActions/Show Hidden Files" "h") -; (gtk_accel_path "/DirViewActions/Stop Volume" "") -; (gtk_accel_path "/DirViewActions/Duplicate" "") -; (gtk_accel_path "/DirViewActions/Eject Volume" "") -; (gtk_accel_path "/IconViewActions/Clean Up" "") -; (gtk_accel_path "/NavigationActions/New Tab" "t") -; (gtk_accel_path "/ShellActions/Home" "Home") -; (gtk_accel_path "/NavigationActions/New Window" "n") -; (gtk_accel_path "/DirViewActions/PropertiesAccel" "i") -; (gtk_accel_path "/IconViewActions/Sort by Modification Date" "") -; (gtk_accel_path "/DirViewActions/Save Search As" "") -; (gtk_accel_path "/IconViewActions/Keep Aligned" "") -; (gtk_accel_path "/DirViewActions/New Launcher" "") -; (gtk_accel_path "/NavigationActions/Search" "") -; (gtk_accel_path "/DirViewActions/Properties" "Return") -; (gtk_accel_path "/NavigationActions/TabsMoveLeft" "Page_Up") -; (gtk_accel_path "/DirViewActions/Copy to Desktop" "") -; (gtk_accel_path "/ShellActions/Stop" "") -; (gtk_accel_path "/DirViewActions/New Folder" "n") -; (gtk_accel_path "/DirViewActions/Self Poll" "") -; (gtk_accel_path "/DirViewActions/Move to Desktop" "") -; (gtk_accel_path "/DirViewActions/Cut" "x") -; (gtk_accel_path "/DirViewActions/Delete" "") -; (gtk_accel_path "/IconViewActions/Sort by Name" "") -; (gtk_accel_path "/view_as_2" "2") -; (gtk_accel_path "/view_as_3" "3") -; (gtk_accel_path "/DirViewActions/Paste" "v") -; (gtk_accel_path "/DirViewActions/Invert Selection" "i") -; (gtk_accel_path "/view_as_1" "1") -; (gtk_accel_path "/NavigationActions/Close All Windows" "q") -; (gtk_accel_path "/IconViewActions/Arrange Items" "") -; (gtk_accel_path "/NavigationActions/Show Hide Sidebar" "F9") -; (gtk_accel_path "/DirViewActions/Self Stop Volume" "") -; (gtk_accel_path "/NavigationActions/Show Hide Toolbar" "") -; (gtk_accel_path "/DirViewActions/Self Mount Volume" "") -; (gtk_accel_path "/DirViewActions/Copy to Home" "") -; (gtk_accel_path "/DirViewActions/Self Unmount Volume" "") -; (gtk_accel_path "/DirViewActions/Copy to next pane" "") -; (gtk_accel_path "/DirViewActions/LocationOpenAlternate" "") diff --git a/config/compton.conf b/config/compton.conf deleted file mode 100644 index 336abbe..0000000 --- a/config/compton.conf +++ /dev/null @@ -1,58 +0,0 @@ -## FROM: https://github.com/addy-dclxvi/i3-starterpack -## shadow -shadow = true; -no-dnd-shadow = true; -no-dock-shadow = true; -clear-shadow = true; -shadow-radius = 12; -shadow-offset-x = -12; -shadow-offset-y = -12; -shadow-opacity = 0.95; -shadow-red = 0.18; -shadow-green = 0.20; -shadow-blue = 0.25; -shadow-exclude = [ "class_g = 'Cairo-clock'" , - "class_g = 'CoverGloobus'", - "class_g = 'Tilda'", - "class_g = 'Conky'", - "class_g ?= 'Notify-osd'", - "class_g = 'Firefox'", - "class_g = 'Firefox-esr'", - "class_g = 'Dmenu'", - "name = 'Notification'", - "_GTK_FRAME_EXTENTS@:c" -]; - -## fading -fading = true; -fade-delta = 0.25; -fade-in-step = 0.02; -fade-out-step = 0.02; -fade-exclude = [ -]; - -## other -backend = "xrender"; -mark-wmwin-focused = true; -mark-ovredir-focused = true; -detect-rounded-corners = true; -detect-client-opacity = true; -refresh-rate = 0; -vsync = "none"; -dbe = false; -paint-on-overlay = true; -focus-exclude = [ "class_g = 'Cairo-clock'" , - "class_g = 'CoverGloobus'", - "class_g = 'Tilda'", - "class_g = 'Firefox'", - "class_g = 'Firefox-esr'" -]; -detect-transient = true; -detect-client-leader = true; -invert-color-include = [ ]; -glx-copy-from-front = false; -glx-swap-method = "undefined"; -wintypes: -{ - tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; }; -}; diff --git a/config/gtk-2.0/gtkfilechooser.ini b/config/gtk-2.0/gtkfilechooser.ini deleted file mode 100644 index 6b3674c..0000000 --- a/config/gtk-2.0/gtkfilechooser.ini +++ /dev/null @@ -1,11 +0,0 @@ -[Filechooser Settings] -LocationMode=path-bar -ShowHidden=false -ShowSizeColumn=true -GeometryX=0 -GeometryY=152 -GeometryWidth=1280 -GeometryHeight=800 -SortColumn=name -SortOrder=ascending -StartupMode=recent diff --git a/config/hexchat/addon_checksum.conf b/config/hexchat/addon_checksum.conf deleted file mode 100644 index 1921b58..0000000 --- a/config/hexchat/addon_checksum.conf +++ /dev/null @@ -1 +0,0 @@ -limit = 256 diff --git a/config/hexchat/chanopt.conf b/config/hexchat/chanopt.conf deleted file mode 100644 index e69de29..0000000 diff --git a/config/hexchat/hexchat.conf b/config/hexchat/hexchat.conf deleted file mode 100644 index 5974121..0000000 --- a/config/hexchat/hexchat.conf +++ /dev/null @@ -1,211 +0,0 @@ -version = 2.14.2 -away_auto_unmark = 0 -away_omit_alerts = 0 -away_reason = I'm busy -away_show_once = 1 -away_size_max = 300 -away_timeout = 60 -away_track = 1 -completion_amount = 5 -completion_auto = 0 -completion_sort = 1 -completion_suffix = , -dcc_auto_chat = 0 -dcc_auto_recv = 1 -dcc_auto_resume = 1 -dcc_blocksize = 1024 -dcc_completed_dir = -dcc_dir = /home/dbroqua/Downloads -dcc_fast_send = 1 -dcc_global_max_get_cps = 0 -dcc_global_max_send_cps = 0 -dcc_ip = -dcc_ip_from_server = 0 -dcc_max_get_cps = 0 -dcc_max_send_cps = 0 -dcc_permissions = 384 -dcc_port_first = 0 -dcc_port_last = 0 -dcc_remove = 0 -dcc_save_nick = 0 -dcc_send_fillspaces = 0 -dcc_stall_timeout = 60 -dcc_timeout = 180 -flood_ctcp_num = 5 -flood_ctcp_time = 30 -flood_msg_num = 5 -flood_msg_time = 30 -gui_autoopen_chat = 1 -gui_autoopen_dialog = 1 -gui_autoopen_recv = 1 -gui_autoopen_send = 1 -gui_chanlist_maxusers = 9999 -gui_chanlist_minusers = 5 -gui_compact = 0 -gui_dialog_height = 256 -gui_dialog_left = 0 -gui_dialog_top = 0 -gui_dialog_width = 500 -gui_filesize_iec = 0 -gui_focus_omitalerts = 0 -gui_hide_menu = 0 -gui_input_attr = 1 -gui_input_icon = 1 -gui_input_nick = 1 -gui_input_spell = 1 -gui_input_style = 1 -gui_join_dialog = 1 -gui_lagometer = 1 -gui_lang = 15 -gui_mode_buttons = 0 -gui_pane_divider_position = 0 -gui_pane_left_size = 128 -gui_pane_right_size = 100 -gui_pane_right_size_min = 80 -gui_quit_dialog = 1 -gui_search_pos = 0 -gui_slist_fav = 0 -gui_slist_select = 30 -gui_slist_skip = 0 -gui_tab_chans = 1 -gui_tab_dialogs = 1 -gui_tab_dots = 0 -gui_tab_icons = 1 -gui_tab_layout = 2 -gui_tab_middleclose = 1 -gui_tab_newtofront = 2 -gui_tab_pos = 1 -gui_tab_scrollchans = 0 -gui_tab_server = 1 -gui_tab_small = 0 -gui_tab_sort = 1 -gui_tab_trunc = 20 -gui_tab_utils = 0 -gui_throttlemeter = 1 -gui_topicbar = 1 -gui_transparency = 255 -gui_tray = 1 -gui_tray_away = 0 -gui_tray_blink = 1 -gui_tray_close = 1 -gui_tray_minimize = 0 -gui_tray_quiet = 0 -gui_ulist_buttons = 0 -gui_ulist_color = 0 -gui_ulist_count = 1 -gui_ulist_doubleclick = QUERY %s -gui_ulist_hide = 0 -gui_ulist_icons = 1 -gui_ulist_pos = 3 -gui_ulist_show_hosts = 0 -gui_ulist_sort = 0 -gui_ulist_style = 1 -gui_url_mod = 0 -gui_usermenu = 0 -gui_win_height = 767 -gui_win_fullscreen = 0 -gui_win_left = 0 -gui_win_modes = 0 -gui_win_save = 1 -gui_win_state = 0 -gui_win_swap = 0 -gui_win_top = 14 -gui_win_ucount = 0 -gui_win_width = 1280 -identd_server = 0 -identd_port = 0 -input_balloon_chans = 0 -input_balloon_hilight = 0 -input_balloon_priv = 0 -input_beep_chans = 0 -input_beep_hilight = 0 -input_beep_priv = 0 -input_command_char = / -input_filter_beep = 1 -input_flash_chans = 0 -input_flash_hilight = 1 -input_flash_priv = 1 -input_perc_ascii = 0 -input_perc_color = 0 -input_tray_chans = 0 -input_tray_hilight = 1 -input_tray_priv = 1 -irc_auto_rejoin = 0 -irc_reconnect_rejoin = 1 -irc_ban_type = 1 -irc_cap_server_time = 1 -irc_conf_mode = 0 -irc_extra_hilight = -irc_hide_nickchange = 0 -irc_hide_version = 0 -irc_hidehost = 0 -irc_id_ntext = -irc_id_ytext = -irc_invisible = 0 -irc_join_delay = 5 -irc_logging = 1 -irc_logmask = %n/%c.log -irc_nick1 = DarKou -irc_nick2 = DarKou_ -irc_nick3 = dbroqua__ -irc_nick_hilight = -irc_no_hilight = NickServ,ChanServ,InfoServ,N,Q -irc_notice_pos = 0 -irc_part_reason = Leaving -irc_quit_reason = Leaving -irc_raw_modes = 0 -irc_real_name = realname -irc_servernotice = 0 -irc_skip_motd = 0 -irc_user_name = dbroqua -irc_wallops = 0 -irc_who_join = 1 -irc_whois_front = 1 -net_auto_reconnect = 1 -net_auto_reconnectonfail = 0 -net_bind_host = -net_ping_timeout = 60 -net_proxy_auth = 0 -net_proxy_host = -net_proxy_pass = -net_proxy_port = 0 -net_proxy_type = 0 -net_proxy_use = 0 -net_proxy_user = -net_reconnect_delay = 10 -net_throttle = 1 -notify_timeout = 15 -notify_whois_online = 0 -perl_warnings = 0 -stamp_log = 1 -stamp_log_format = %b %d %H:%M:%S -stamp_text = 1 -stamp_text_format = [%H:%M:%S] -text_autocopy_color = 0 -text_autocopy_stamp = 0 -text_autocopy_text = 1 -text_background = -text_color_nicks = 0 -text_font = Monospace 9 -text_font_main = Monospace 9 -text_font_alternative = Arial Unicode MS,Segoe UI Emoji,Lucida Sans Unicode,Meiryo,Symbola,Unifont -text_indent = 1 -text_max_indent = 256 -text_max_lines = 5000 -text_replay = 1 -text_search_case_match = 0 -text_search_highlight_all = 0 -text_search_follow = 1 -text_search_regexp = 0 -text_show_marker = 1 -text_show_sep = 1 -text_spell_langs = en_US -text_stripcolor_msg = 0 -text_stripcolor_replay = 1 -text_stripcolor_topic = 1 -text_thin_sep = 1 -text_transparent = 0 -text_wordwrap = 1 -url_grabber = 1 -url_grabber_limit = 100 -url_logging = 0 diff --git a/config/hexchat/ignore.conf b/config/hexchat/ignore.conf deleted file mode 100644 index e69de29..0000000 diff --git a/config/hexchat/logs/NETWORK/server.log b/config/hexchat/logs/NETWORK/server.log deleted file mode 100644 index 3d4e128..0000000 --- a/config/hexchat/logs/NETWORK/server.log +++ /dev/null @@ -1,7 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 21:59:43 2020 - -May 03 21:59:43 Perl interface loaded -May 03 21:59:43 Checksum plugin loaded -May 03 21:59:43 FiSHLiM plugin loaded -May 03 21:59:43 Sysinfo plugin loaded -May 03 21:59:43 Python interface loaded diff --git a/config/hexchat/logs/freenode/#debian-facile.log b/config/hexchat/logs/freenode/#debian-facile.log deleted file mode 100644 index 86d76cb..0000000 --- a/config/hexchat/logs/freenode/#debian-facile.log +++ /dev/null @@ -1,13 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 22:02:36 2020 - -May 03 22:02:36 * Now talking on #debian-facile -May 03 22:02:36 * Topic for #debian-facile is: Debian-Facile, salon d'entraide | Asso/forum/doc: http://debian-facile.org | Hors-Sujet: #df-offtopic | Collage: http://debian-facile.org/paste | Activité/flood: #df-flood || Staff DF voicé -May 03 22:02:36 * Topic for #debian-facile set by captnfab!~captnfab@unaffiliated/captnfab (Sun Apr 19 22:11:25 2020) -May 03 22:02:36 -ChanServ- [#debian-facile] Entraide pour Debian | IRC≠hotline, ATTENDEZ ! | Asso, forum, doc: https://debian-facile.org/ | Collage, logs (publics) IRC du salon: https://debian-facile.org/portail-outils.php | Log forum/wiki/git: #df-flood || Staff DF voicé -May 03 22:02:36 * Channel #debian-facile url: http://debian-facile.org/ -May 03 22:06:44 * Xubl0f has quit (Quit: Leaving) -May 03 22:09:34 * Xubl0f (~memory@45.162.228.187) has joined -May 03 22:11:01 Python interface unloaded -May 03 22:11:01 FiSHLiM plugin unloaded -**** ENDING LOGGING AT Sun May 3 22:11:01 2020 - diff --git a/config/hexchat/logs/freenode/#paulla.log b/config/hexchat/logs/freenode/#paulla.log deleted file mode 100644 index 32ece69..0000000 --- a/config/hexchat/logs/freenode/#paulla.log +++ /dev/null @@ -1,9 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 21:59:59 2020 - -May 03 21:59:59 * Now talking on #paulla -May 03 21:59:59 * Topic for #paulla is: PauLLA | Pau Logiciels Libres Association | https://www.paulla.asso.fr | PauLLa a 20 ans ! | Un élève de l'EISTI a aimé: "L'intervention du DSI des pompiers" -> dam64 -May 03 21:59:59 * Topic for #paulla set by jpcw!~jpcw@hermes.camguilhem.net (Wed Oct 23 21:15:14 2019) -May 03 22:00:00 * Channel #paulla url: http://www.paulla.asso.fr -May 03 22:00:16 * ChanServ gives voice to DarKou -**** ENDING LOGGING AT Sun May 3 22:11:01 2020 - diff --git a/config/hexchat/logs/freenode/.log b/config/hexchat/logs/freenode/.log deleted file mode 100644 index e5c08ea..0000000 --- a/config/hexchat/logs/freenode/.log +++ /dev/null @@ -1,22 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 21:59:43 2020 - -May 03 21:59:43 * Connecting to chat.freenode.net (204.225.96.251:6697) -May 03 21:59:44 * * Subject: /O=Digital Signature Trust Co./CN=DST Root CA X3 -May 03 21:59:44 * * Issuer: /O=Digital Signature Trust Co./CN=DST Root CA X3 -May 03 21:59:44 * * Subject: /C=US/O=Let's Encrypt/CN=Let's Encrypt Authority X3 -May 03 21:59:44 * * Issuer: /O=Digital Signature Trust Co./CN=DST Root CA X3 -May 03 21:59:44 * * Subject: /CN=tolkien.freenode.net -May 03 21:59:44 * * Issuer: /C=US/O=Let's Encrypt/CN=Let's Encrypt Authority X3 -May 03 21:59:44 * * Certification info: -May 03 21:59:44 * Subject: -May 03 21:59:44 * CN=tolkien.freenode.net -May 03 21:59:44 * Issuer: -May 03 21:59:44 * C=US -May 03 21:59:44 * O=Let's Encrypt -May 03 21:59:44 * CN=Let's Encrypt Authority X3 -May 03 21:59:44 * Public key algorithm: rsaEncryption (4096 bits) -May 03 21:59:44 * Sign algorithm sha256WithRSAEncryption -May 03 21:59:44 * Valid since Apr 6 05:02:46 2020 GM to Jul 5 05:02:46 2020 GM -May 03 21:59:44 * * Cipher info: -May 03 21:59:44 * Version: TLSv1.3, cipher TLS_AES_256_GCM_SHA384 (256 bits) -May 03 21:59:44 * Connected. Now logging in. diff --git a/config/hexchat/logs/freenode/freenode.log b/config/hexchat/logs/freenode/freenode.log deleted file mode 100644 index a61f56b..0000000 --- a/config/hexchat/logs/freenode/freenode.log +++ /dev/null @@ -1,79 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 21:59:45 2020 - -May 03 21:59:45 * *** Looking up your hostname... -May 03 21:59:45 * *** Checking Ident -May 03 21:59:45 * *** Found your hostname -May 03 21:59:49 * *** No Ident response -May 03 21:59:49 * Capabilities supported: account-notify away-notify cap-notify chghost extended-join identify-msg multi-prefix sasl tls -May 03 21:59:49 * Capabilities requested: account-notify away-notify cap-notify chghost extended-join identify-msg multi-prefix -May 03 21:59:49 * Capabilities acknowledged: account-notify away-notify cap-notify chghost extended-join identify-msg multi-prefix -**** ENDING LOGGING AT Sun May 3 21:59:49 2020 - -**** BEGIN LOGGING AT Sun May 3 21:59:49 2020 - -May 03 21:59:49 * Welcome to the freenode Internet Relay Chat Network DarKou -May 03 21:59:49 * Your host is tolkien.freenode.net[204.225.96.251/6697], running version ircd-seven-1.1.9 -May 03 21:59:49 * This server was created Fri Apr 24 2020 at 22:19:21 UTC -May 03 21:59:49 * tolkien.freenode.net ircd-seven-1.1.9 DOQRSZaghilopsuwz CFILMPQSbcefgijklmnopqrstuvz bkloveqjfI -May 03 21:59:49 * CHANTYPES=# EXCEPTS INVEX CHANMODES=eIbq,k,flj,CFLMPQScgimnprstuz CHANLIMIT=#:120 PREFIX=(ov)@+ MAXLIST=bqeI:100 MODES=4 NETWORK=freenode STATUSMSG=@+ CALLERID=g CASEMAPPING=rfc1459 :are supported by this server -May 03 21:59:49 * CHARSET=ascii NICKLEN=16 CHANNELLEN=50 TOPICLEN=390 DEAF=D FNC TARGMAX=NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:4,NOTICE:4,ACCEPT:,MONITOR: EXTBAN=$,ajrxz CLIENTVER=3.0 SAFELIST ELIST=CTU KNOCK :are supported by this server -May 03 21:59:49 * WHOX ETRACE CPRIVMSG CNOTICE MONITOR=100 :are supported by this server -May 03 21:59:49 * There are 96 users and 84365 invisible on 31 servers -May 03 21:59:49 * 34 :IRC Operators online -May 03 21:59:49 * 32 :unknown connection(s) -May 03 21:59:49 * 43446 :channels formed -May 03 21:59:49 * I have 3633 clients and 1 servers -May 03 21:59:49 * 3633 4695 :Current local users 3633, max 4695 -May 03 21:59:49 * 84461 87645 :Current global users 84461, max 87645 -May 03 21:59:49 * Highest connection count: 4696 (4695 clients) (99183 connections received) -May 03 21:59:49 * - tolkien.freenode.net Message of the Day - -May 03 21:59:49 * - Welcome to tolkien.freenode.net in Sanford, NC, US. Thanks to -May 03 21:59:49 * - https://travelingmailbox.com/ for sponsoring this server -May 03 21:59:49 * - Welcome to freenode - supporting the free and open source -May 03 21:59:49 * - software communities since 1998. -May 03 21:59:49 * - -May 03 21:59:49 * - By connecting to freenode you indicate that you have read and -May 03 21:59:49 * - accept our policies and guidelines as set out on https://freenode.net -May 03 21:59:49 * - -May 03 21:59:49 * - In the event that you observe behaviour that contravenes our policies, -May 03 21:59:49 * - please notify a volunteer staff member via private message, or send us an -May 03 21:59:49 * - e-mail to complaints@freenode.net -- we will do our best to address the -May 03 21:59:49 * - situation within a reasonable period of time, and we may request further -May 03 21:59:49 * - information or, as appropriate, involve other parties such as channel operators -May 03 21:59:49 * - Group Contacts representing an on-topic group. -May 03 21:59:49 * - -May 03 21:59:49 * - freenode runs an open proxy scanner. -May 03 21:59:49 * - -May 03 21:59:49 * - If you are looking for assistance, you may be able to find a list of -May 03 21:59:49 * - volunteer staff on '/stats p' (shows only on-call staff) or by joining -May 03 21:59:49 * - #freenode and using the '/who freenode/staff/*' command. You may message -May 03 21:59:49 * - any of us at any time. Please note that freenode predominantly provides -May 03 21:59:49 * - assistance via private message, and while we have a network channel the -May 03 21:59:49 * - primary venue for support requests is via private message to a member -May 03 21:59:49 * - of the volunteer staff team. -May 03 21:59:49 * - -May 03 21:59:49 * - From time to time, volunteer staff may send server-wide notices relating to -May 03 21:59:49 * - the project, or the communities that we host. The majority of such notices -May 03 21:59:49 * - will be sent as wallops, and you can '/mode +w' to ensure that you -May 03 21:59:49 * - do not miss them. Important messages relating to the freenode project, including -May 03 21:59:49 * - notices of upcoming maintenance and other scheduled downtime will be issued as -May 03 21:59:49 * - global notices. -May 03 21:59:49 * - -May 03 21:59:49 * - Representing an on-topic project? Don't forget to register, more information -May 03 21:59:49 * - can be found on the https://freenode.net website under "Group Registration". -May 03 21:59:50 * - -May 03 21:59:50 * - Thank you also to our server sponsors for the sustained support in keeping the -May 03 21:59:50 * - network going for close to two decades. -May 03 21:59:50 * - -May 03 21:59:50 * - Thank you for using freenode! -May 03 21:59:50 * End of /MOTD command. -May 03 21:59:50 * DarKou sets mode +Z on DarKou -May 03 21:59:50 * DarKou sets mode +i on DarKou -May 03 21:59:50 -NickServ- This nickname is registered. Please choose a different nickname, or identify via /msg NickServ identify . -May 03 22:00:15 >nickserv< identify **** -May 03 22:00:16 -NickServ- You are now identified for DarKou. -May 03 22:11:01 Sysinfo plugin unloaded -May 03 22:11:01 Checksum plugin unloaded -May 03 22:11:01 Perl interface unloaded -**** ENDING LOGGING AT Sun May 3 22:11:01 2020 - diff --git a/config/hexchat/logs/freenode/server.log b/config/hexchat/logs/freenode/server.log deleted file mode 100644 index 93e0c02..0000000 --- a/config/hexchat/logs/freenode/server.log +++ /dev/null @@ -1,3 +0,0 @@ -**** BEGIN LOGGING AT Sun May 3 21:59:43 2020 - -May 03 21:59:43 * Looking up chat.freenode.net diff --git a/config/hexchat/notify.conf b/config/hexchat/notify.conf deleted file mode 100644 index e69de29..0000000 diff --git a/config/hexchat/scrollback/freenode/#debian-facile.txt b/config/hexchat/scrollback/freenode/#debian-facile.txt deleted file mode 100644 index 471142a..0000000 --- a/config/hexchat/scrollback/freenode/#debian-facile.txt +++ /dev/null @@ -1,9 +0,0 @@ -T 1588536156 19* Now talking on 22#debian-facile -T 1588536156 22* Topic for 22#debian-facile is: Debian-Facile, salon d'entraide | Asso/forum/doc: http://debian-facile.org | Hors-Sujet: #df-offtopic | Collage: http://debian-facile.org/paste | Activité/flood: #df-flood || Staff DF voicé -T 1588536156 22* Topic for 22#debian-facile set by 26captnfab!~captnfab@unaffiliated/captnfab (24Sun Apr 19 22:11:25 2020) -T 1588536156 -18ChanServ- [#debian-facile] Entraide pour Debian | IRC≠hotline, ATTENDEZ ! | Asso, forum, doc: https://debian-facile.org/ | Collage, logs (publics) IRC du salon: https://debian-facile.org/portail-outils.php | Log forum/wiki/git: #df-flood || Staff DF voicé -T 1588536156 22* Channel 22#debian-facile url: 24http://debian-facile.org/ -T 1588536404 24* Xubl0f has quit (Quit: Leaving) -T 1588536574 23* Xubl0f (~memory@45.162.228.18723) has joined -T 1588536661 Python interface unloaded -T 1588536661 FiSHLiM plugin unloaded diff --git a/config/hexchat/scrollback/freenode/#paulla.txt b/config/hexchat/scrollback/freenode/#paulla.txt deleted file mode 100644 index f2aa171..0000000 --- a/config/hexchat/scrollback/freenode/#paulla.txt +++ /dev/null @@ -1,5 +0,0 @@ -T 1588535999 19* Now talking on 22#paulla -T 1588535999 22* Topic for 22#paulla is: PauLLA | Pau Logiciels Libres Association | https://www.paulla.asso.fr | PauLLa a 20 ans ! | Un élève de l'EISTI a aimé: "L'intervention du DSI des pompiers" -> dam64 -T 1588535999 22* Topic for 22#paulla set by 26jpcw!~jpcw@hermes.camguilhem.net (24Wed Oct 23 21:15:14 2019) -T 1588536000 22* Channel 22#paulla url: 24http://www.paulla.asso.fr -T 1588536016 22* 26ChanServ gives voice to 18DarKou diff --git a/config/hexchat/servlist.conf b/config/hexchat/servlist.conf deleted file mode 100644 index 8247e85..0000000 --- a/config/hexchat/servlist.conf +++ /dev/null @@ -1,571 +0,0 @@ -v=2.14.2 - -N=2600net -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.2600.net - -N=2ch -E=iso-2022-jp -F=19 -D=0 -S=irc.2ch.sc -S=irc.nurs.or.jp -S=irc.juggler.jp - -N=AccessIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.accessirc.net - -N=AfterNET -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.afternet.org - -N=Aitvaras -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.data.lt/+6668 -S=irc.omnitel.net/+6668 -S=irc.ktu.lt/+6668 -S=irc.kis.lt/+6668 -S=irc.vub.lt/+6668 -S=irc.data.lt -S=irc.omnitel.net -S=irc.ktu.lt -S=irc.kis.lt -S=irc.vub.lt - -N=Anthrochat -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.anthrochat.net - -N=ARCNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=arcnet-irc.org - -N=AustNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.austnet.org - -N=AzzurraNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.azzurra.org - -N=BetaChat -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.betachat.net - -N=BuddyIM -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.buddy.im - -N=Canternet -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.canternet.org - -N=Chat4all -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.chat4all.org - -N=ChatJunkies -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.chatjunkies.org - -N=ChatNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.chatnet.org - -N=ChatSpike -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.chatspike.net - -N=ChattingAway -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.chattingaway.com - -N=Criten -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.criten.net - -N=DALnet -L=2 -E=UTF-8 (Unicode) -F=19 -D=0 -S=us.dal.net - -N=DarkMyst -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.darkmyst.org - -N=Dark-Tou-Net -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.d-t-net.de - -N=DeltaAnime -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.deltaanime.net - -N=EFnet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.choopa.net -S=irc.paraphysics.net -S=efnet.port80.se -S=irc.underworld.no -S=irc.inet.tele.dk - -N=ElectroCode -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.electrocode.net - -N=EnterTheGame -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.enterthegame.com - -N=EntropyNet -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.entropynet.net - -N=EsperNet -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.esper.net - -N=EUIrc -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.euirc.net - -N=EuropNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.europnet.org - -N=FDFNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.fdfnet.net - -N=freenode -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=chat.freenode.net -S=irc.freenode.net - -N=Furnet -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.furnet.org - -N=GalaxyNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.galaxynet.org - -N=GameSurge -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.gamesurge.net - -N=GeeksIRC -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.geeksirc.net - -N=GeekShed -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.geekshed.net - -N=German-Elite -E=CP1252 -F=19 -D=0 -S=irc.german-elite.net - -N=GIMPNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.gimp.org -S=irc.gnome.org - -N=GlobalGamers -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.globalgamers.net/+6660 -S=irc.globalgamers.net - -N=Hashmark -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.hashmark.net - -N=IdleMonkeys -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.idlemonkeys.net - -N=IndirectIRC -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.indirectirc.com - -N=Interlinked -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.interlinked.me - -N=IRC4Fun -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.irc4fun.net - -N=IRCHighWay -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.irchighway.net - -N=IRCNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=open.ircnet.net - -N=Irctoo.net -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.irctoo.net - -N=iZ-smart.net -E=CP1252 -F=19 -D=0 -S=irc.iz-smart.net - -N=KBFail -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.kbfail.net - -N=Krstarica -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.krstarica.com - -N=LibraIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.librairc.net - -N=LinkNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.link-net.org/+7000 - -N=MindForge -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.mindforge.org - -N=MIXXnet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.mixxnet.net - -N=Moznet -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.mozilla.org - -N=ObsidianIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.obsidianirc.net - -N=Oceanius -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.oceanius.com - -N=OFTC -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.oftc.net - -N=OtherNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.othernet.org - -N=OzNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.oz.org - -N=PIRC.PL -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.pirc.pl - -N=PonyChat -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.ponychat.net - -N=PTNet.org -E=UTF-8 (Unicode) -F=19 -D=0 -S=uevora.ptnet.org -S=vianetworks.ptnet.org - -N=QuakeNet -L=8 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.quakenet.org - -N=Rizon -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.rizon.net - -N=RusNet -E=KOI8-R (Cyrillic) -F=19 -D=0 -S=irc.tomsk.net -S=irc.run.net -S=irc.ru -S=irc.lucky.net - -N=SceneNet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.scene.org - -N=SeilEn.de -E=CP1252 -F=19 -D=0 -S=irc.seilen.de - -N=Serenity-IRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.serenity-irc.net - -N=SlashNET -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.slashnet.org - -N=Snoonet -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.snoonet.org - -N=Sohbet.Net -E=CP1254 -F=19 -D=0 -S=irc.sohbet.net - -N=SolidIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.solidirc.com - -N=SorceryNet -L=6 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.sorcery.net - -N=SpotChat -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.spotchat.org - -N=StarChat -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.starchat.net - -N=Station51 -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.station51.net - -N=StormBit -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.stormbit.net - -N=SwiftIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.swiftirc.net - -N=synIRC -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.synirc.net - -N=Techtronix -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.techtronix.net - -N=TURLINet -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.servx.ru - -N=UnderNet -L=9 -E=UTF-8 (Unicode) -F=19 -D=0 -S=us.undernet.org -C=MSG x@channels.undernet.org login %u %p - -N=UniBG -L=9 -E=CP1251 -F=19 -D=0 -S=irc.lirex.com -S=irc.naturella.com -S=irc.techno-link.com -C=MSG NS IDENTIFY %p - -N=Worldnet -E=UTF-8 (Unicode) -F=19 -D=0 -S=irc.worldnet.net - -N=Xertion -L=6 -E=UTF-8 (Unicode) -F=23 -D=0 -S=irc.xertion.org - diff --git a/config/hexchat/sound.conf b/config/hexchat/sound.conf deleted file mode 100644 index e69de29..0000000 diff --git a/config/i3/config b/config/i3/config deleted file mode 100644 index 4e0c3ac..0000000 --- a/config/i3/config +++ /dev/null @@ -1,303 +0,0 @@ -# i3 Config - -# ------------------------------------------------------------------------------------------------- -# VARIABLES -# - -# Default modifier -set $mod Mod4 - -# Workspaces names -set $wksp1 "1: Main" -set $wksp2 "2: Dev" -set $wksp3 "3: Social" -set $wksp4 "4: Music" -set $wksp5 "5: Graphics" -set $wksp6 "6: Minecraft" -set $wksp7 "7: Remote" -set $wksp8 "8" -set $wksp9 "9: Databases" -set $wksp10 "10: External" - -# Colors (Nord's theme) -set $nord0 #2E3440 -set $nord1 #3B4252 -set $nord2 #434C5E -set $nord3 #4C566A -set $nord4 #D8DEE9 -set $nord5 #E5E9F0 -set $nord6 #ECEFF4 -set $nord7 #8FBCBB -set $nord8 #88C0D0 -set $nord9 #81A1C1 -set $nord10 #5E81AC -set $nord11 #BF616A -set $nord12 #D08770 -set $nord13 #EBCB8B -set $nord14 #A3BE8C -set $nord15 #B48EAD - -# Modal -set $modalBorder 4 -set $modalWidth 1280 -set $modalHeight 800 - -# Font -set $font DejaVu Sans Mono 9 - -# Terminal -set $terminal /usr/bin/i3-sensible-terminal - -# Border -default_border pixel 4 - -# Use Mouse+$mod to drag floating windows to their wanted position -floating_modifier $mod - -# Default font -font pango:$font - -# ------------------------------------------------------------------------------------------------- -# WINDOW FOCUS/SPLIT/MOVE -# - -# change focus (VIM mod) -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 - -# split in horizontal orientation -bindsym $mod+backslash split h -# split in vertical orientation -bindsym $mod+minus split v - -# enter fullscreen mode for the focused container -bindsym $mod+Mod1+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+Shift+space floating toggle - -# change focus between tiling / floating windows -bindsym $mod+space focus mode_toggle - -# focus the parent container -bindsym $mod+a focus parent - -# ------------------------------------------------------------------------------------------------- -# WORKSPACES -# - -workspace $wksp9 output DP-2-2 -workspace $wksp10 output DP-2-2 - -# switch to workspace -bindsym $mod+1 workspace $wksp1 -bindsym $mod+2 workspace $wksp2 -bindsym $mod+3 workspace $wksp3 -bindsym $mod+4 workspace $wksp4 -bindsym $mod+5 workspace $wksp5 -bindsym $mod+6 workspace $wksp6 -bindsym $mod+7 workspace $wksp7 -bindsym $mod+8 workspace $wksp8 -bindsym $mod+9 workspace $wksp9 -bindsym $mod+0 workspace $wksp10 -# switch to previous/next workspace -bindsym Mod1+Control+a workspace prev_on_output -bindsym Mod1+Control+d workspace next_on_output - -# move focused container to workspace -bindsym $mod+Shift+1 move container to workspace $wksp1 -bindsym $mod+Shift+2 move container to workspace $wksp2 -bindsym $mod+Shift+3 move container to workspace $wksp3 -bindsym $mod+Shift+4 move container to workspace $wksp4 -bindsym $mod+Shift+5 move container to workspace $wksp5 -bindsym $mod+Shift+6 move container to workspace $wksp6 -bindsym $mod+Shift+7 move container to workspace $wksp7 -bindsym $mod+Shift+8 move container to workspace $wksp8 -bindsym $mod+Shift+9 move container to workspace $wksp9 -bindsym $mod+Shift+0 move container to workspace $wksp10 -# move focused container to previous/next workspace -bindsym Mod1+Shift+Control+a move container to workspace prev -bindsym Mod1+Shift+Control+d move container to workspace next - -# ------------------------------------------------------------------------------------------------- -# RELOAD / RESTART / EXIT -# - -bindsym $mod+Shift+c reload -bindsym $mod+Shift+r restart -bindsym $mod+Shift+e exec "~/Bin/i3quit.sh" - -# ------------------------------------------------------------------------------------------------- -# RESIZE MODE -# - -mode "resize" { - bindsym h resize shrink 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 grow width 10 px or 10 ppt - - # back to normal: Enter or Escape - bindsym Return mode "default" - bindsym Escape mode "default" -} - -bindsym $mod+r mode "resize" - -# ------------------------------------------------------------------------------------------------- -# COLORS -# - -#colors border back text indicator child_border -client.focused $nord9 $nord9 $nord0 $nord9 $nord9 -client.focused_inactive $nord0 $nord0 $nord9 $nord0 $nord0 -client.unfocused $nord0 $nord0 $nord9 $nord0 $nord0 - -client.urgent $nord13 $nord13 $nord0 $nord13 $nord13 -client.placeholder $nord13 $nord13 $nord0 $nord13 $nord13 - -client.background $nord9 - -# ------------------------------------------------------------------------------------------------- -# I3STATUS -# - -#bar { -# status_command py3status -## position top -## mode dock -## modifier $mod - -# colors { -# background $nord0 -# statusline $nord9 - -# focused_workspace $nord0 $nord9 -# active_workspace $nord0 $nord9 -# inactive_workspace $nord9 $nord0 -# urgent_workspace $nord0 $nord13 -# } -#} - -# ------------------------------------------------------------------------------------------------- -# AUTOSTART -# - -exec --no-startup-id i3-msg 'exec blueman-applet &' -#exec --no-startup-id i3-msg 'exec pasystray &' -exec --no-startup-id i3-msg 'exec nm-applet &' -exec --no-startup-id i3-msg 'exec nextcloud &' -exec --no-startup-id i3-msg 'exec remmina -i &' -exec --no-startup-id xsettingsd & -exec --no-startup-id setxkbmap -option compose:rctrl & -exec --no-startup-id libinput-gestures-setup start -exec --no-startup-id i3-msg exec "$terminal" -exec --no-startup-id i3-msg 'exec /usr/bin/firefox' -exec --no-startup-id i3-msg 'exec /usr/bin/spotify' -exec_always --no-startup-id ~/.config/i3/polybar.sh & - -# ------------------------------------------------------------------------------------------------- -# WALLPAPER -# - -exec --no-startup-id ~/Bin/wallpaper.sh - -# ------------------------------------------------------------------------------------------------- -# Default workspace layout -# - -workspace_layout tabbed - -# ------------------------------------------------------------------------------------------------- -# BIND KEYS APPS -# - -# kill focused window -bindsym $mod+Shift+q kill -bindsym Control+q kill - -# start Finder -bindsym Mod1+space exec "rofi -show combi" - -# start a terminal -bindsym $mod+Return exec "$terminal" - -# Lock session -bindsym $mod+Mod1+l exec "~/Bin/lock.sh" - -# File browser -bindsym $mod+f exec "$terminal -T 'File Browser' -e ranger" -# Disk usage -bindsym $mod+Shift+f exec "terminator -T 'Ncdu' -x ncdu ~/ --color=dark" - -# Find file in user directory -bindsym $mod+x exec "rofi -modi 'find:~/.local/share/rofi/finder.sh' -show find" - -# Show top -bindsym $mod+t exec "$terminal -T 'Top' -e bpytop" - -# Display -bindsym $mod+p exec "~/Bin/screenlayoutrofi.sh" -bindsym XF86Display exec ~/Bin/screenlayoutrofi.sh - -# Multimedia keys -bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume `pactl info|grep Sink|cut -d: -f 2` +5% -bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume `pactl info|grep Sink|cut -d: -f 2` -5% -bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute `pactl info|grep Sink|cut -d: -f 2` toggle -bindsym $mod+shift+p exec "$terminal -T 'Pulse Mixer' -e pulsemixer" - - -# Screen brighness -bindsym XF86MonBrightnessDown exec --no-startup-id ~/Bin/brightness.sh down -bindsym XF86MonBrightnessUp exec --no-startup-id ~/Bin/brightness.sh up - -# Multimedia -bindsym XF86AudioPlay exec ~/Bin/music.sh PlayPause -bindsym XF86AudioPrev exec ~/Bin/music.sh Previous -bindsym XF86AudioNext exec ~/Bin/music.sh Next - -# Take Screenshot -#bindsym Print exec ~/Bin/screenshooter.sh -bindsym $mod+Print exec ~/Bin/slip -# Based on https://www.reddit.com/r/i3wm/comments/j8ufof/screenshot_script/ -bindsym --release Shift+Print exec "scrot -s -e 'xclip -selection c -t image/png < $f && mv $f ~/Pictures/screenshots'" -bindsym --release Print exec "scrot -e 'xclip -selection c -t image/png < $f && mv $f ~/Pictures/screenshots'" - -# Calendar -bindsym $mod+c exec "$terminal -T 'Calendar' -e khal interactive" - -# Note -bindsym $mod+n exec "zettlr" - -# ------------------------------------------------------------------------------------------------- -# APP DEFAULT POSITION/DECORATIONS -# - -for_window [class="Spotify"], move container to workspace $wksp4 -for_window [class="X-terminal-emulator" title="Calendar"] floating enable border pixel $modalBorder resize set $modalWidth $modalHeight, move absolute position center -for_window [class="X-terminal-emulator" title="File Browser"] floating enable border pixel $modalBorder resize set $modalWidth $modalHeight, move absolute position center -for_window [class="X-terminal-emulator" title="Pulse Mixer"] floating enable border pixel $modalBorder resize set $modalWidth $modalHeight, move absolute position center -for_window [class="X-terminal-emulator" title="Ncdu"] floating enable border pixel $modalBorder resize set $modalWidth $modalHeight, move absolute position center -for_window [class="X-terminal-emulator" title="Top"] floating enable border pixel $modalBorder resize set $modalWidth $modalHeight, move absolute position center -for_window [class="JViewer"] floating enable border pixel $modalBorder - -# ------------------------------------------------------------------------------------------------- -# OTHER STUFF -# - -# Power save mode and Auto lock screen -exec --no-startup-id xset s 300 30 -exec --no-startup-id xset dpms 120 -exec --no-startup-id xss-lock -n ~/Bin/lock.sh diff --git a/config/i3/polybar.sh b/config/i3/polybar.sh deleted file mode 100755 index c0ec8ef..0000000 --- a/config/i3/polybar.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env sh - -# Terminate already running bar instances -killall -q polybar - -# Wait until the processes have been shut down -while pgrep -x polybar >/dev/null; do sleep 1; done - -# Launch polybar -polybar bottom & diff --git a/config/i3status/config b/config/i3status/config deleted file mode 100644 index 51d01fc..0000000 --- a/config/i3status/config +++ /dev/null @@ -1,156 +0,0 @@ -# i3status configuration file. -# see "man i3status" for documentation. - -# It is important that this file is edited as UTF-8. -# The following line should contain a sharp s: -# ß -# If the above line is not correctly displayed, fix your editor first! - -#general { -# output_format = "i3bar" -# colors = true -# interval = 5 -# separator = "❱" -#} - -general { - colors = true - interval = 3 - color_good = "#A3BE8C" - separator = True - color_bad = "#BF616A" - color_degraded = "#B48EAD" -} - -#order += "disk /" -order += "disk /home" -order += "vpn_status" -order += "wifi" -#order += "wireless _first_" -order += "ethernet _first_" -order += "battery_level" -order += "external_script logitech_battery_level" -order += "external_script lcd_brightness" -#order += "sysdata base" -#order += "sysdata temp" -#order += "nvidia_temp" -#order += "uptime" -order += "volume master" -order += "external_script bluetooth_headphones_status" -order += "static_string prev" -order += "external_script spotify" -order += "static_string next" -#order += "static_string screenshot" -order += "tztime local" - -# System -# -uptime { - format = "up: {days}d {hours}h {minutes}m" -} -battery_level { - battery_id = all - charging_character="" - blocks="" - format = "{icon} {percent}%" -} -external_script logitech_battery_level { - cache_timeout = 10 - format = " {output}" - script_path = '~/Bin/mouse_battery.sh read 2>/dev/null' -} - -sysdata base{ - format = " CPU: {cpu_usage}%, MEM: {mem_used_percent}%" -} -sysdata temp{ - format = "CPU: {cpu_temp}°C" -} -tztime local { - format = " %m/%d %H:%M:%S" -} - -# Network -# -vpn_status { - format = " VPN: {name}|" - pidfile = "/sys/class/net/tun0/dev_id" - check_pid = "true" -} -wifi { -# format = " {ip} ({ssid} {signal_percent}{icon} {bitrate})" - format_up = " {ssid} {signal_percent}{icon} {bitrate}" - format_down = " -" -} -wireless _first_ { - format_up = " %ip (%essid)" - format_down = " -" -} -ethernet _first_ { -# format_up = " %ip (%speed)" - format_up = " %speed" - format_down = " -" -} -run_watch DHCP { - pidfile = "/var/run/dhclient*.pid" -} - -# Filesystem -# -disk "/" { - format = " / %percentage_free" - on_click 1 = "exec --no-startup-id caja /" -} -disk "/home" { - format = " /home %percentage_free" - on_click 1 = "exec --no-startup-id caja ~/" -} - -# Display -# -external_script lcd_brightness { - cache_timeout = 10 - format = " {output}%" - script_path = '~/Bin/brightness.sh read 2>/dev/null' -} - -# Music -# -external_script bluetooth_headphones_status { - cache_timeout = 10 - format = " {output}" - script_path = '~/Bin/bluetooth_headphones_status.sh' - on_click 1 = "exec --no-startup-id ~/Bin/bluetooth_headphones_status.sh toggle_profile" -} -volume master { - format = "♪ %volume" - format_muted = "♪ muted" - device = "default" - mixer = "Master" - mixer_idx = 0 -} -static_string prev { - format = "" -# on_click 1 = "exec --no-startup-id qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous" - on_click 1 = "exec --no-startup-id ~/Bin/music.sh Previous" -} -static_string next { - format = "" -# on_click 1 = "exec --no-startup-id qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next" - on_click 1 = "exec --no-startup-id ~/Bin/music.sh Next" -} -external_script spotify { - cache_timeout = 10 - format = "{output}" - script_path = "~/Bin/nowPlaying.sh" -# script_path = 'pidof spotify >/dev/null && echo " "$(qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Metadata | grep "^xesam:\(title\|artist\):" | grep -o " .*" | column | sed "s/\t\+/:/g") || (echo "")' -# on_click 1 = "exec --no-startup-id pidof spotify && qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause" - on_click 1 = "exec --no-startup-id ~/Bin/music.sh PlayPause" -} - -# Tools -# -static_string screenshot { - format = "" - on_click 1 = "exec --no-startup-id ~/Bin/screenshooter.sh" -} diff --git a/config/libinput-gestures.conf b/config/libinput-gestures.conf deleted file mode 100644 index 3eb9478..0000000 --- a/config/libinput-gestures.conf +++ /dev/null @@ -1,2 +0,0 @@ -gesture: swipe right 3 xdotool key alt+ctrl+d -gesture: swipe left 3 xdotool key alt+ctrl+a diff --git a/config/mimeapps.list b/config/mimeapps.list deleted file mode 100644 index e5fe562..0000000 --- a/config/mimeapps.list +++ /dev/null @@ -1,33 +0,0 @@ -[Default Applications] -x-scheme-handler/http=userapp-Firefox-9USLJ0.desktop -x-scheme-handler/https=userapp-Firefox-9USLJ0.desktop -x-scheme-handler/ftp=userapp-Firefox-9USLJ0.desktop -x-scheme-handler/chrome=userapp-Firefox-9USLJ0.desktop -text/html=userapp-Firefox-9USLJ0.desktop -application/x-extension-htm=userapp-Firefox-9USLJ0.desktop -application/x-extension-html=userapp-Firefox-9USLJ0.desktop -application/x-extension-shtml=userapp-Firefox-9USLJ0.desktop -application/xhtml+xml=userapp-Firefox-9USLJ0.desktop -application/x-extension-xhtml=userapp-Firefox-9USLJ0.desktop -application/x-extension-xht=userapp-Firefox-9USLJ0.desktop -image/x-tga=feh.desktop -image/png=feh.desktop -image/gif=feh.desktop -image/jpeg=feh.desktop -application/javascript=codium.desktop - -[Added Associations] -x-scheme-handler/http=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -x-scheme-handler/https=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -x-scheme-handler/ftp=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -x-scheme-handler/chrome=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -text/html=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/x-extension-htm=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/x-extension-html=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/x-extension-shtml=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/xhtml+xml=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/x-extension-xhtml=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -application/x-extension-xht=firefox.desktop;userapp-Firefox-9USLJ0.desktop; -image/x-tga=feh.desktop; -image/gif=feh.desktop; -image/jpeg=feh.desktop; diff --git a/config/pavucontrol.ini b/config/pavucontrol.ini deleted file mode 100644 index 8272b03..0000000 --- a/config/pavucontrol.ini +++ /dev/null @@ -1,7 +0,0 @@ -[window] -width=1280 -height=781 -sinkInputType=1 -sourceOutputType=1 -sinkType=0 -sourceType=1 diff --git a/config/polybar/colors b/config/polybar/colors deleted file mode 100644 index b4fc821..0000000 --- a/config/polybar/colors +++ /dev/null @@ -1,19 +0,0 @@ -; vim:ft=dosini - -[colors] -nord0 = #2E3440 -nord1 = #3B4252 -nord2 = #434C5E -nord3 = #4C566A -nord4 = #D8DEE9 -nord5 = #E5E9F0 -nord6 = #ECEFF4 -nord7 = #8FBCBB -nord8 = #88C0D0 -nord9 = #81A1C1 -nord10= #5E81AC -nord11= #BF616A -nord12= #D08770 -nord13= #EBCB8B -nord14= #A3BE8C -nord15= #B48EAD diff --git a/config/polybar/config b/config/polybar/config deleted file mode 100644 index 0e49cc6..0000000 --- a/config/polybar/config +++ /dev/null @@ -1,66 +0,0 @@ -; vim:ft=dosini - -include-file = $HOME/.config/polybar/colors -include-file = $HOME/.config/polybar/global -include-file = $HOME/.config/polybar/modules -include-file = $HOME/.config/polybar/settings - - -[global-wm] -margin-top = 4 -margin-bottom = 4 - - -[bar/base] -width = ${global.width} -height = ${global.height} -radius = ${global.radius} - -fixed-center = ${global.fixed-center} - -background = ${global.background} -foreground = ${global.foreground} - -line-size = ${global.line-size} -line-color = ${global.line-color} - -border-size = ${global.border-size} -border-color = ${global.border-color} - -padding-left = ${global.padding-left} -padding-right = ${global.padding-right} - -module-margin-left = ${global.module-margin-left} -module-margin-right = ${global.module-margin-right} - -font-0 = ${global.font-0} -font-1 = ${global.font-1} -font-2 = ${global.font-2} - -separator = ${global.separator} - -cursor-click = ${global.cursor-click} -cursor-scroll = ${global.cursor-scroll} - - -[bar/top] -inherit = bar/base -bottom = false - -modules-left = i3 -modules-right = filesystem vpn wlan eth cpu memory battery hhkb logitech lcd_brightness pulseaudio bluetooth_headphones_status multimedia_previous multimedia_current multimedia_next imap tmux date - - -[bar/bottom] -inherit = bar/base -bottom = true - -modules-left = i3 -modules-right = filesystem vpn wlan eth battery hhkb logitech lcd_brightness pulseaudio bluetooth_headphones_status multimedia_previous multimedia_current multimedia_next date -; disabled modules -; imap tmux cpu memory temperature-wifi - -tray-position = right -tray-padding = 2 -tray-background = ${global.background} -tray-detached = false diff --git a/config/polybar/global b/config/polybar/global deleted file mode 100644 index 8112940..0000000 --- a/config/polybar/global +++ /dev/null @@ -1,33 +0,0 @@ -; vim:ft=dosini - -[global] -width = 100% -height = 26 - -radius = 0 - -fixed-center = false - -background = ${colors.nord0} -foreground = ${colors.nord10} - -line-size = 4 -line-color = ${colors.nord10} - -border-size = 0 -border-color = ${colors.nord0} - -padding-left = 0 -padding-right = 4 - -module-margin-left = 2 -module-margin-right = 2 - -font-0 = DejaVu Sans Mono for Powerline Book:size=9 -font-1 = FontAwesome:pixelsize=9;0 -font-2 = ProFontIIx Nerd Font:pixelsize=9;0 - -separator = ❱ - -cursor-click = pointer -cursor-scroll = ns-resize diff --git a/config/polybar/modules b/config/polybar/modules deleted file mode 100644 index 586641b..0000000 --- a/config/polybar/modules +++ /dev/null @@ -1,303 +0,0 @@ -; vim:ft=dosini - -[module/filesystem] -type = internal/fs - -interval = 120 - -mount-0 = /home - -label-mounted = " %mountpoint%: %percentage_used%%" - -label-unmounted =  %mountpoint% not mounted -label-unmounted-foreground = ${colors.nord11} - - -[module/i3] -type = internal/i3 - -format = - -index-sort = true - -wrapping-scroll = false - -label-focused-foreground = ${colors.nord0} -label-focused-background = ${colors.nord8} -label-focused-underline= ${colors.nord10} -label-focused-padding = 2 - -label-unfocused-foreground = ${colors.nord5} -label-unfocused-background = ${colors.nord3} -label-unfocused-padding = 2 - -label-visible-foreground = ${colors.nord5} -label-visible-background = ${colors.nord3} -label-visible-underline = ${colors.nord10} -label-visible-padding = 2 - -label-urgent-foreground = ${colors.nord5} -label-urgent-background = ${colors.nord12} -label-urgent-underline = ${colors.nord11} -label-urgent-padding = 2 - - -[module/vpn] -type = custom/script -exec = ~/.config/polybar/scripts/vpn-networkmanager-status.sh -interval = 5 - - -[module/wlan] -type = internal/network -interface = wlp59s0 - -interval = 3.0 - -format-connected = 直 -label-connected = %essid% -format-connected-underline = ${colors.nord14} - -format-disconnected = 睊 -format-disconnected-underline = ${colors.nord11} - - -[module/eth] -type = internal/network -interface = enp0s31f6 - -interval = 3.0 - -format-connected-underline = ${colors.nord14} -label-connected =  %linkspeed% - -format-disconnected =  -format-disconnected-underline = ${colors.nord11} - - -[module/date] -type = internal/date - -interval = 30 - -date = %d/%m -time = %H:%M - -label =  %date% %time% - - -[module/pulseaudio] -type = internal/pulseaudio - -format-volume = - -label-volume = ♪ %percentage%% - -label-muted =  - -label-muted-foreground = ${colors.nord11} - -bar-volume-width = 10 -bar-volume-foreground-0 = ${colors.nord14} -bar-volume-foreground-1 = ${colors.nord14} -bar-volume-foreground-2 = ${colors.nord14} -bar-volume-foreground-3 = ${colors.nord14} -bar-volume-foreground-4 = ${colors.nord13} -bar-volume-foreground-5 = ${colors.nord13} -bar-volume-foreground-6 = ${colors.nord12} -bar-volume-foreground-7 = ${colors.nord12} -bar-volume-foreground-8 = ${colors.nord11} -bar-volume-foreground-9 = ${colors.nord11} - -bar-volume-gradient = true - -bar-volume-indicator = | -bar-volume-indicator-font = 2 - -bar-volume-fill = ▄ -bar-volume-fill-font = 2 - -bar-volume-empty = ▄ -bar-volume-empty-font = 2 -bar-volume-empty-foreground = ${colors.nord6} - - -[module/battery] -type = internal/battery - -battery = BAT0 -adapter = AC - -full-at = 100 - -format-charging = -format-charging-underline = ${colors.nord14} - -format-discharging = -format-discharging-underline = ${colors.nord13} - -format-full-prefix = " " -format-full-underline = ${colors.nord10} - -animation-charging-0 =  -animation-charging-1 =  -animation-charging-2 =  -animation-charging-3 =  -animation-charging-4 =  -animation-charging-5 =  -animation-charging-framerate = 750 - -animation-discharging-0 =  -animation-discharging-1 =  -animation-discharging-2 =  -animation-discharging-3 =  -animation-discharging-4 =  -animation-discharging-5 =  -animation-discharging-framerate = 750 - - -[module/logitech] -type = custom/script -exec = ~/Bin/device_battery.sh mouse 2>/dev/null - -format = 