Compare commits
30 Commits
Author | SHA1 | Date | |
---|---|---|---|
230f82777c | |||
34caaae5fb | |||
a2e6853a1c | |||
117a0ee6c8 | |||
b80eadc6f7 | |||
137212b13d | |||
a2daf9f9d9 | |||
3745e8675f | |||
c898f392de | |||
e24271fbd4 | |||
bfe8473374 | |||
dbb30ab893 | |||
eb8fb1d960 | |||
e1a1cbea60 | |||
596c2bebb2 | |||
e153bf2eaa | |||
161af14f7f | |||
18021a3eb5 | |||
d4233d6440 | |||
ad45e8d767 | |||
f1b0f2f13f | |||
f9b79325e0 | |||
7d8fc24991 | |||
3e2a72cec1 | |||
7b551b83b8 | |||
320a00dd29 | |||
47b13b6072 | |||
8375fb5cff | |||
2d4cddbf4c | |||
d297e32b03 |
3
.config/chromium-flags.conf
Normal file
3
.config/chromium-flags.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Permet à Chromium de se lancer dans Wayland
|
||||||
|
#--enable-features=UseOzonePlatform
|
||||||
|
#--ozone-platform=wayland
|
2
.config/environment.d/envvars.conf
Normal file
2
.config/environment.d/envvars.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Active wayland pour Firefox
|
||||||
|
MOZ_ENABLE_WAYLAND=1
|
7
.config/gammastep/config.ini
Normal file
7
.config/gammastep/config.ini
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[general]
|
||||||
|
location-provider=manual
|
||||||
|
|
||||||
|
# Lieu : Neudorf, chez Agnès
|
||||||
|
[manual]
|
||||||
|
lat=48.5680685
|
||||||
|
lon=7.7709942
|
21
.config/kitty/Solarized_Light.conf
Normal file
21
.config/kitty/Solarized_Light.conf
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
background #fdf6e3
|
||||||
|
foreground #52676f
|
||||||
|
cursor #52676f
|
||||||
|
selection_background #e9e2cb
|
||||||
|
color0 #e4e4e4
|
||||||
|
color8 #ffffd7
|
||||||
|
color1 #d70000
|
||||||
|
color9 #d75f00
|
||||||
|
color2 #5f8700
|
||||||
|
color10 #585858
|
||||||
|
color3 #af8700
|
||||||
|
color11 #626262
|
||||||
|
color4 #0087ff
|
||||||
|
color12 #808080
|
||||||
|
color5 #af005f
|
||||||
|
color13 #5f5faf
|
||||||
|
color6 #00afaf
|
||||||
|
color14 #8a8a8a
|
||||||
|
color7 #262626
|
||||||
|
color15 #1c1c1c
|
||||||
|
selection_foreground #fcf4dc
|
@ -423,3 +423,7 @@ macos_option_as_alt yes
|
|||||||
# The number is a percentage of maximum volume.
|
# The number is a percentage of maximum volume.
|
||||||
# See man XBell for details.
|
# See man XBell for details.
|
||||||
x11_bell_volume 80
|
x11_bell_volume 80
|
||||||
|
|
||||||
|
# Ajout du thème Solarized Light sur https://github.com/dexpota/kitty-themes
|
||||||
|
include ./theme.conf
|
||||||
|
|
||||||
|
1
.config/kitty/theme.conf
Symbolic link
1
.config/kitty/theme.conf
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
./Solarized_Dark_-_Patched.conf
|
232
.config/sway/config
Normal file
232
.config/sway/config
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
# Default config for sway
|
||||||
|
#
|
||||||
|
# Copy this to ~/.config/sway/config and edit it to your liking.
|
||||||
|
#
|
||||||
|
# Read `man 5 sway` for a complete reference.
|
||||||
|
|
||||||
|
### Variables
|
||||||
|
#
|
||||||
|
# Logo key. Use Mod1 for Alt.
|
||||||
|
set $mod Mod4
|
||||||
|
# Home row direction keys, like vim
|
||||||
|
set $left h
|
||||||
|
set $down j
|
||||||
|
set $up k
|
||||||
|
set $right l
|
||||||
|
# Your preferred terminal emulator
|
||||||
|
set $term alacritty
|
||||||
|
# Your preferred application launcher
|
||||||
|
# Note: pass the final command to swaymsg so that the resulting window can be opened
|
||||||
|
# on the original workspace that the command was run on.
|
||||||
|
set $menu wofi --show run | xargs swaymsg exec --
|
||||||
|
|
||||||
|
### Output configuration
|
||||||
|
#
|
||||||
|
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
||||||
|
output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
||||||
|
#
|
||||||
|
# Example configuration:
|
||||||
|
#
|
||||||
|
# output HDMI-A-1 resolution 1920x1080 position 1920,0
|
||||||
|
#
|
||||||
|
# You can get the names of your outputs by running: swaymsg -t get_outputs
|
||||||
|
|
||||||
|
### Idle configuration
|
||||||
|
#
|
||||||
|
# Example configuration:
|
||||||
|
#
|
||||||
|
# exec swayidle -w \
|
||||||
|
# timeout 300 'swaylock -f -c 000000' \
|
||||||
|
# timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
||||||
|
# before-sleep 'swaylock -f -c 000000'
|
||||||
|
#
|
||||||
|
# This will lock your screen after 300 seconds of inactivity, then turn off
|
||||||
|
# your displays after another 300 seconds, and turn your screens back on when
|
||||||
|
# resumed. It will also lock your screen before your computer goes to sleep.
|
||||||
|
|
||||||
|
### Input configuration
|
||||||
|
#
|
||||||
|
# Example configuration:
|
||||||
|
#
|
||||||
|
# input "2:14:SynPS/2_Synaptics_TouchPad" {
|
||||||
|
# dwt enabled
|
||||||
|
# tap enabled
|
||||||
|
# natural_scroll enabled
|
||||||
|
# middle_emulation enabled
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# You can get the names of your inputs by running: swaymsg -t get_inputs
|
||||||
|
# Read `man 5 sway-input` for more information about this section.
|
||||||
|
|
||||||
|
input type:touchpad {
|
||||||
|
dwt enabled
|
||||||
|
tap enabled
|
||||||
|
natural_scroll enabled
|
||||||
|
middle_emulation enabled
|
||||||
|
}
|
||||||
|
|
||||||
|
input type:keyboard {
|
||||||
|
xkb_layout "fr"
|
||||||
|
xkb_variant "oss"
|
||||||
|
xkb_options "grp:alt_space_toggle"
|
||||||
|
}
|
||||||
|
### Key bindings
|
||||||
|
#
|
||||||
|
# Basics:
|
||||||
|
#
|
||||||
|
# Start a terminal
|
||||||
|
bindsym $mod+Return exec $term
|
||||||
|
|
||||||
|
# Kill focused window
|
||||||
|
bindsym $mod+Shift+q kill
|
||||||
|
|
||||||
|
# Start your launcher
|
||||||
|
bindsym $mod+d exec $menu
|
||||||
|
|
||||||
|
# Drag floating windows by holding down $mod and left mouse button.
|
||||||
|
# Resize them with right mouse button + $mod.
|
||||||
|
# Despite the name, also works for non-floating windows.
|
||||||
|
# Change normal to inverse to use left mouse button for resizing and right
|
||||||
|
# mouse button for dragging.
|
||||||
|
floating_modifier $mod normal
|
||||||
|
|
||||||
|
# Reload the configuration file
|
||||||
|
bindsym $mod+Shift+c reload
|
||||||
|
|
||||||
|
# Exit sway (logs you out of your Wayland session)
|
||||||
|
bindsym $mod+Shift+e exec swaynag -t warning -m 'Tu as appuyé sur le raccourci de sortie. Sortir réellement de sway ? Cela terminera ta session Wayland.' -b 'Oui, quitter sway' 'swaymsg exit'
|
||||||
|
#
|
||||||
|
# Moving around:
|
||||||
|
#
|
||||||
|
# Move your focus around
|
||||||
|
bindsym $mod+$left focus left
|
||||||
|
bindsym $mod+$down focus down
|
||||||
|
bindsym $mod+$up focus up
|
||||||
|
bindsym $mod+$right focus right
|
||||||
|
# Or use $mod+[up|down|left|right]
|
||||||
|
bindsym $mod+Left focus left
|
||||||
|
bindsym $mod+Down focus down
|
||||||
|
bindsym $mod+Up focus up
|
||||||
|
bindsym $mod+Right focus right
|
||||||
|
|
||||||
|
# Move the focused window with the same, but add Shift
|
||||||
|
bindsym $mod+Shift+$left move left
|
||||||
|
bindsym $mod+Shift+$down move down
|
||||||
|
bindsym $mod+Shift+$up move up
|
||||||
|
bindsym $mod+Shift+$right move right
|
||||||
|
# Ditto, with arrow keys
|
||||||
|
bindsym $mod+Shift+Left move left
|
||||||
|
bindsym $mod+Shift+Down move down
|
||||||
|
bindsym $mod+Shift+Up move up
|
||||||
|
bindsym $mod+Shift+Right move right
|
||||||
|
#
|
||||||
|
# Workspaces:
|
||||||
|
#
|
||||||
|
# Switch to workspace
|
||||||
|
bindsym $mod+ampersand workspace number 1
|
||||||
|
bindsym $mod+eacute workspace number 2
|
||||||
|
bindsym $mod+quotedbl workspace number 3
|
||||||
|
bindsym $mod+apostrophe workspace number 4
|
||||||
|
bindsym $mod+parenleft workspace number 5
|
||||||
|
bindsym $mod+minus workspace number 6
|
||||||
|
bindsym $mod+egrave workspace number 7
|
||||||
|
bindsym $mod+underscore workspace number 8
|
||||||
|
bindsym $mod+ccedilla workspace number 9
|
||||||
|
bindsym $mod+agrave workspace number 10
|
||||||
|
# Move focused container to workspace
|
||||||
|
bindsym $mod+Shift+ampersand move container to workspace number 1
|
||||||
|
bindsym $mod+Shift+eacute move container to workspace number 2
|
||||||
|
bindsym $mod+Shift+quotedbl move container to workspace number 3
|
||||||
|
bindsym $mod+Shift+apostrophe move container to workspace number 4
|
||||||
|
bindsym $mod+Shift+parenleft move container to workspace number 5
|
||||||
|
bindsym $mod+Shift+minus move container to workspace number 6
|
||||||
|
bindsym $mod+Shift+egrave move container to workspace number 7
|
||||||
|
bindsym $mod+Shift+underscore move container to workspace number 8
|
||||||
|
bindsym $mod+Shift+ccedilla move container to workspace number 9
|
||||||
|
bindsym $mod+Shift+agrave move container to workspace number 10
|
||||||
|
# Note: workspaces can have any name you want, not just numbers.
|
||||||
|
# We just use 1-10 as the default.
|
||||||
|
#
|
||||||
|
# Layout stuff:
|
||||||
|
#
|
||||||
|
# You can "split" the current object of your focus with
|
||||||
|
# $mod+b or $mod+v, for horizontal and vertical splits
|
||||||
|
# respectively.
|
||||||
|
bindsym $mod+b splith
|
||||||
|
bindsym $mod+v splitv
|
||||||
|
|
||||||
|
# Switch the current container between different layout styles
|
||||||
|
bindsym $mod+s layout stacking
|
||||||
|
bindsym $mod+z layout tabbed
|
||||||
|
bindsym $mod+e layout toggle split
|
||||||
|
|
||||||
|
# Make the current focus fullscreen
|
||||||
|
bindsym $mod+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
|
||||||
|
|
||||||
|
# Move focus to the parent container
|
||||||
|
bindsym $mod+a focus parent
|
||||||
|
#
|
||||||
|
# Scratchpad:
|
||||||
|
#
|
||||||
|
# Sway has a "scratchpad", which is a bag of holding for windows.
|
||||||
|
# You can send windows there and get them back later.
|
||||||
|
|
||||||
|
# Move the currently focused window to the scratchpad
|
||||||
|
bindsym $mod+Shift+tab move scratchpad
|
||||||
|
|
||||||
|
# Show the next scratchpad window or hide the focused scratchpad window.
|
||||||
|
# If there are multiple scratchpad windows, this command cycles through them.
|
||||||
|
bindsym $mod+tab scratchpad show
|
||||||
|
#
|
||||||
|
# Resizing containers:
|
||||||
|
#
|
||||||
|
mode "resize" {
|
||||||
|
# left will shrink the containers width
|
||||||
|
# right will grow the containers width
|
||||||
|
# up will shrink the containers height
|
||||||
|
# down will grow the containers height
|
||||||
|
bindsym $left resize shrink width 10px
|
||||||
|
bindsym $down resize grow height 10px
|
||||||
|
bindsym $up resize shrink height 10px
|
||||||
|
bindsym $right resize grow width 10px
|
||||||
|
|
||||||
|
# Ditto, with arrow keys
|
||||||
|
bindsym Left resize shrink width 10px
|
||||||
|
bindsym Down resize grow height 10px
|
||||||
|
bindsym Up resize shrink height 10px
|
||||||
|
bindsym Right resize grow width 10px
|
||||||
|
|
||||||
|
# Return to default mode
|
||||||
|
bindsym Return mode "default"
|
||||||
|
bindsym Escape mode "default"
|
||||||
|
}
|
||||||
|
bindsym $mod+r mode "resize"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Status Bar:
|
||||||
|
#
|
||||||
|
# Read `man 5 sway-bar` for more information about this section.
|
||||||
|
bar 1 {
|
||||||
|
position top
|
||||||
|
|
||||||
|
# When the status_command prints a new line to stdout, swaybar updates.
|
||||||
|
# The default just shows the current date and time.
|
||||||
|
status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
|
||||||
|
|
||||||
|
colors {
|
||||||
|
statusline #ffffff
|
||||||
|
background #323232
|
||||||
|
inactive_workspace #32323200 #32323200 #5c5c5c
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
include /etc/sway/config.d/*
|
||||||
|
|
||||||
|
# Ajout pour Olivier
|
||||||
|
include ~/.config/sway/config.d/*
|
6
.config/sway/config.d/00-presse-papier.conf
Normal file
6
.config/sway/config.d/00-presse-papier.conf
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Presse-papiers
|
||||||
|
|
||||||
|
# La base
|
||||||
|
exec wl-paste -t text --watch clipman store
|
||||||
|
# Presse-papier primaire : avec sauvegarde de l'historique dans un fichier JSON
|
||||||
|
exec wl-paste -p -t text --watch clipman store -P --histpath="~/.local/share/clipman-primary.json"
|
3
.config/sway/config.d/10-terminal.conf
Normal file
3
.config/sway/config.d/10-terminal.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Utilise le terminal trouvé dans la variable TERMINAL
|
||||||
|
unbindsym $mod+Return
|
||||||
|
bindsym $mod+Return exec $TERMINAL
|
3
.config/sway/config.d/15-background.conf
Normal file
3
.config/sway/config.d/15-background.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
# Change background
|
||||||
|
output * bg /home/od/.config/sway/abstract-blue-background-1920x1200.jpg fill
|
1
.config/sway/config.d/20-font.conf
Normal file
1
.config/sway/config.d/20-font.conf
Normal file
@ -0,0 +1 @@
|
|||||||
|
font pango:DejaVu Sans Mono 11
|
16
.config/sway/config.d/30-visuel.conf
Normal file
16
.config/sway/config.d/30-visuel.conf
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Espace entre les fenêtres
|
||||||
|
for_window [class="^.*"] border pixel 2
|
||||||
|
for_window [class="^.*"] title_format " %title"
|
||||||
|
gaps inner 5
|
||||||
|
smart_borders on
|
||||||
|
smart_gaps on
|
||||||
|
# Censé cacher les bordures de fenêtres adjacents
|
||||||
|
hide_edge_borders --i3 both
|
||||||
|
|
||||||
|
# Bordure de titre de fenêtres : aucune
|
||||||
|
titlebar_border_thickness 0
|
||||||
|
# Espace intérieur du titre des fenêtres : aucun
|
||||||
|
titlebar_padding 0
|
||||||
|
# Enlever le titre aux fenêtres
|
||||||
|
default_border none
|
||||||
|
default_floating_border none
|
21
.config/sway/config.d/40-bureaux.conf
Normal file
21
.config/sway/config.d/40-bureaux.conf
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Applications qui vont dans un espace de bureau spécifique
|
||||||
|
#
|
||||||
|
# Pour connaître le nom des class/app_id, faire :
|
||||||
|
# `swaymsg -t get_tree|grep -i chromium`, par exemple.
|
||||||
|
|
||||||
|
# Bureau 1 (développement)
|
||||||
|
assign [class="jetbrains-idea|Code"] workspace 1
|
||||||
|
assign [app_id="jetbrains-idea|Code"] workspace 1
|
||||||
|
|
||||||
|
|
||||||
|
# Bureau 2 (navigation web)
|
||||||
|
assign [class="Google-chrome|Vivaldi-stable|Opera|Firefox|Navigator|Nightly|Chromium"] workspace 2
|
||||||
|
assign [app_id="Google-chrome|Vivaldi-stable|Opera|Firefox|Navigator|Nightly|Chromium"] workspace 2
|
||||||
|
|
||||||
|
# Bureau 3 (Courriel, PHPStorm)
|
||||||
|
assign [class="Thunderbird|Mail|jetbrains-phpstorm"] workspace 3
|
||||||
|
assign [app_id="Thunderbird|Mail|jetbrains-phpstorm"] workspace 3
|
||||||
|
|
||||||
|
# Bureau 4
|
||||||
|
assign [class="Mattermost|mattermost-desktop|Rambox|Slack|Scudcloud|Gitter|Dino"] workspace 4
|
||||||
|
assign [app_id="Mattermost|mattermost-desktop|Rambox|Slack|Scudcloud|Gitter|Dino|dino"] workspace 4
|
10
.config/sway/config.d/50-barre.conf
Normal file
10
.config/sway/config.d/50-barre.conf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Barre d'état
|
||||||
|
|
||||||
|
# désactive la barre principale
|
||||||
|
bar 1 mode invisible
|
||||||
|
|
||||||
|
# active une nouvelle barre
|
||||||
|
bar olivier {
|
||||||
|
position top
|
||||||
|
status_command waybar
|
||||||
|
}
|
10
.config/sway/config.d/60-raccourcis.conf
Normal file
10
.config/sway/config.d/60-raccourcis.conf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Raccourcis claviers en tous genres
|
||||||
|
|
||||||
|
# Contrôle des lecteurs audios (via MPRIS, par exemple mpv-mpris)
|
||||||
|
bindsym XF86AudioPlay exec playerctl play-pause # play/pause
|
||||||
|
bindsym XF86AudioNext exec playerctl next # prochain(e) musique/film/fichier
|
||||||
|
bindsym XF86AudioPrev exec playerctl previous # précédent(e) musique/film/fichier
|
||||||
|
bindsym XF86AudioStop exec playerctl stop # arrêt musique/film/fichier
|
||||||
|
|
||||||
|
# Bouton impression écran
|
||||||
|
bindsym Print exec grim Images/$(date +'%Y-%m-%d-%s_screenshot.jpg')
|
5
.config/sway/config.d/61-volume.conf
Normal file
5
.config/sway/config.d/61-volume.conf
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Contrôle du volume audio
|
||||||
|
bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||||
|
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
|
||||||
|
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||||
|
bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
3
.config/sway/config.d/62-contraste.conf
Normal file
3
.config/sway/config.d/62-contraste.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Contrôle de la lumière
|
||||||
|
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
|
||||||
|
bindsym XF86MonBrightnessUp exec brightnessctl set +5%
|
3
.config/sway/config.d/63-presse-papier.conf
Normal file
3
.config/sway/config.d/63-presse-papier.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Presse-papier
|
||||||
|
unbindsym $mod+h
|
||||||
|
bindsym $mod+h exec clipman pick -t wofi
|
8
.config/sway/config.d/64-verrouillage.conf
Normal file
8
.config/sway/config.d/64-verrouillage.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Verrouillage
|
||||||
|
|
||||||
|
# Écran
|
||||||
|
unbindsym $mod+l
|
||||||
|
bindsym $mod+l exec swaylock
|
||||||
|
|
||||||
|
# Automatique
|
||||||
|
exec swayidle -w timeout 300 'swaylock -f' timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f'
|
8
.config/sway/config.d/90-programmes.conf
Normal file
8
.config/sway/config.d/90-programmes.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Économie des yeux (48.5680685:7.7709942 = Neudorf, rue de Fegersheim)
|
||||||
|
exec gammastep-indicator
|
||||||
|
|
||||||
|
# Notifications de bureau
|
||||||
|
exec dunst
|
||||||
|
|
||||||
|
# Fond d'écran aléatoire
|
||||||
|
exec_always "kill -9 `ps aux | grep random_wallpaper |grep -v 'grep'| awk '{print $2}'`; random_wallpaper &"
|
1
.config/swaylock/config
Normal file
1
.config/swaylock/config
Normal file
@ -0,0 +1 @@
|
|||||||
|
image=/home/od/.config/swaylock/plage_barcelone.jpg
|
BIN
.config/swaylock/plage_barcelone.jpg
Normal file
BIN
.config/swaylock/plage_barcelone.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
105
.config/waybar/config
Normal file
105
.config/waybar/config
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
{
|
||||||
|
"height": 27, // Waybar height (to be removed for auto height)
|
||||||
|
"modules-left": ["sway/workspaces", "sway/mode", "custom/media"],
|
||||||
|
"modules-center": ["sway/window"],
|
||||||
|
"modules-right": ["backlight", "pulseaudio", "memory", "cpu", "network", "battery", "temperature", "clock", "custom/power", "tray"],
|
||||||
|
// Modules configuration
|
||||||
|
"sway/workspaces": {
|
||||||
|
"disable-scroll": true,
|
||||||
|
"all-outputs": true,
|
||||||
|
"format": "{name} {icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"1": "",
|
||||||
|
"2": "",
|
||||||
|
"3": "",
|
||||||
|
"4": "",
|
||||||
|
"5": "",
|
||||||
|
"urgent": "",
|
||||||
|
"focused": "",
|
||||||
|
"default": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sway/mode": {
|
||||||
|
"format": "<span style=\"italic\">{}</span>"
|
||||||
|
},
|
||||||
|
"tray": {
|
||||||
|
// "icon-size": 21,
|
||||||
|
"spacing": 10
|
||||||
|
},
|
||||||
|
"clock": {
|
||||||
|
"timezone": "Europe/Paris",
|
||||||
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||||
|
"format": "{:%a %d %b %R}",
|
||||||
|
"format-alt": "{:%Y-%m-%d %R:%S}"
|
||||||
|
},
|
||||||
|
"cpu": {
|
||||||
|
"format": " {usage}%",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"memory": {
|
||||||
|
"format": " {}%"
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"critical-threshold": 80,
|
||||||
|
"format": "{icon} {temperatureC}°C",
|
||||||
|
"format-icons": ["", "", ""]
|
||||||
|
},
|
||||||
|
"backlight": {
|
||||||
|
"format": " {percent}% {icon}",
|
||||||
|
"format-icons": ["🌕", "🌔", "🌓", "🌒", "🌑"]
|
||||||
|
},
|
||||||
|
"battery": {
|
||||||
|
"states": {
|
||||||
|
"warning": 30,
|
||||||
|
"critical": 15
|
||||||
|
},
|
||||||
|
"format": "{icon} {capacity}%",
|
||||||
|
"format-charging": "{capacity}% ",
|
||||||
|
"format-plugged": "{capacity}% ",
|
||||||
|
"format-alt": "{time} {icon}",
|
||||||
|
"format-icons": ["", "", "", "", ""]
|
||||||
|
},
|
||||||
|
"network": {
|
||||||
|
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
||||||
|
"format-wifi": " {essid} ({signalStrength}%)",
|
||||||
|
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
|
||||||
|
"format-linked": "{ifname} (No IP) ",
|
||||||
|
"format-disconnected": "Disconnected ⚠",
|
||||||
|
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
||||||
|
},
|
||||||
|
"pulseaudio": {
|
||||||
|
// "scroll-step": 1, // %, can be a float
|
||||||
|
"format": "{icon} {volume}% {format_source}",
|
||||||
|
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||||
|
"format-bluetooth-muted": " {icon} {format_source}",
|
||||||
|
"format-muted": " {format_source}",
|
||||||
|
"format-source": " {volume}%",
|
||||||
|
"format-source-muted": "",
|
||||||
|
"format-icons": {
|
||||||
|
"headphone": "",
|
||||||
|
"hands-free": "",
|
||||||
|
"headset": "",
|
||||||
|
"phone": "",
|
||||||
|
"portable": "",
|
||||||
|
"car": "",
|
||||||
|
"default": ["", "", ""]
|
||||||
|
},
|
||||||
|
"on-click": "pavucontrol"
|
||||||
|
},
|
||||||
|
"custom/media": {
|
||||||
|
"format": "{icon} {}",
|
||||||
|
"return-type": "json",
|
||||||
|
"max-length": 40,
|
||||||
|
"format-icons": {
|
||||||
|
"spotify": "",
|
||||||
|
"default": "🎜"
|
||||||
|
},
|
||||||
|
"escape": true,
|
||||||
|
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
|
||||||
|
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
|
||||||
|
},
|
||||||
|
"custom/power": {
|
||||||
|
"format": " ",
|
||||||
|
"on-click": "swaynag -t warning -m 'Menu gestion alimentation' -b 'Déconnexion' 'swaymsg exit' -b 'Veille' 'swaymsg exec systemctl suspend' -b 'Redémarrer' 'swaymsg exec systemctl reboot' -b 'Arrêter' 'shutdown now'"
|
||||||
|
}
|
||||||
|
}
|
209
.config/waybar/style.css
Normal file
209
.config/waybar/style.css
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
/* `otf-font-awesome` is required to be installed for icons */
|
||||||
|
font-family: DejaVu Sans Mono; /*, Roboto, Helvetica, Arial, sans-serif; */
|
||||||
|
font-size: 14px;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background-color: #222;
|
||||||
|
/* border-bottom: 3px solid rgba(100, 114, 125, 0.5);*/
|
||||||
|
color: #dfdfdf;
|
||||||
|
transition-property: background-color;
|
||||||
|
transition-duration: .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar.hidden {
|
||||||
|
opacity: 0.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
window#waybar.empty {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
window#waybar.solo {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
window#waybar.termite {
|
||||||
|
background-color: #3F3F3F;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar.chromium {
|
||||||
|
background-color: #000000;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0 13px;
|
||||||
|
background-color: inherit;
|
||||||
|
color: #fff;
|
||||||
|
/* Use box-shadow instead of border so the text isn't offset */
|
||||||
|
box-shadow: inset 0 -3px transparent;
|
||||||
|
border-bottom: 3px solid #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
||||||
|
#workspaces button:hover {
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
box-shadow: inset 0 -3px #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.focused {
|
||||||
|
background-color: #444;
|
||||||
|
color: #fff;
|
||||||
|
border-bottom: 3px solid #ffb52a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.urgent {
|
||||||
|
background-color: #bd2c40;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode {
|
||||||
|
background-color: #64727d;
|
||||||
|
border-bottom: 3px solid #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#battery,
|
||||||
|
#cpu,
|
||||||
|
#memory,
|
||||||
|
#disk,
|
||||||
|
#temperature,
|
||||||
|
#backlight,
|
||||||
|
#network,
|
||||||
|
#pulseaudio,
|
||||||
|
#custom-media,
|
||||||
|
#tray,
|
||||||
|
#mode,
|
||||||
|
#idle_inhibitor,
|
||||||
|
#mpd {
|
||||||
|
padding: 0 5px;
|
||||||
|
margin: 0 3px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window,
|
||||||
|
#workspaces {
|
||||||
|
margin: 0 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If workspaces is the leftmost module, omit left margin */
|
||||||
|
.modules-left > widget:first-child > #workspaces {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Décalage du centre de 30 caractères de large sur la gauche (caractère M) */
|
||||||
|
.modules-center {
|
||||||
|
margin-left: -30em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If workspaces is the rightmost module, omit right margin */
|
||||||
|
.modules-right > widget:last-child > #workspaces {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #f4a70a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #ffb52a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.charging, #battery.plugged {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #26A65B;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
to {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.critical:not(.charging) {
|
||||||
|
background-color: #f53c3c;
|
||||||
|
color: #ffffff;
|
||||||
|
animation-name: blink;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
label:focus {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #f90000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#memory {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #4bffdc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#backlight {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #9f78e1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #9f78e1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.disconnected {
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #f4a70a;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio.muted {
|
||||||
|
background-color: inherit;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media {
|
||||||
|
background-color: #66cc99;
|
||||||
|
color: #2a5c45;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media.custom-spotify {
|
||||||
|
background-color: #66cc99;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-media.custom-vlc {
|
||||||
|
background-color: #ffa000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-power {
|
||||||
|
margin: 0 10px;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature {
|
||||||
|
background-color: inherit;
|
||||||
|
border-bottom: 3px solid #f50a4d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature.critical {
|
||||||
|
background-color: #eb4d4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
31
.config/wofi/style.css
Normal file
31
.config/wofi/style.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/* base16-wofi (https://sr.ht/~knezi/base16-wofi)
|
||||||
|
* Base16 wofi template by knezi
|
||||||
|
* Solarized Dark scheme by Ethan Schoonover (modified by aramisgithub) */
|
||||||
|
|
||||||
|
window {
|
||||||
|
background-color: #002b36;
|
||||||
|
color: #93a1a1;
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:nth-child(odd) {
|
||||||
|
background-color: #002b36;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:nth-child(even) {
|
||||||
|
background-color: #073642;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected {
|
||||||
|
background-color: #586e75;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input {
|
||||||
|
background-color: #073642;
|
||||||
|
color: #839496;
|
||||||
|
border-color: #586e75;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input:focus {
|
||||||
|
border-color: #b58900;
|
||||||
|
}
|
@ -12,6 +12,8 @@
|
|||||||
quotePath = false
|
quotePath = false
|
||||||
#[commit]
|
#[commit]
|
||||||
# template = /home/od/.gitmessage.txt
|
# template = /home/od/.gitmessage.txt
|
||||||
|
[config "pull"]
|
||||||
|
rebase = false
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
[init]
|
[init]
|
||||||
|
15
.profile
15
.profile
@ -14,7 +14,22 @@ for term in kitty termite qterminal urxvt rxvt-unicode sakura gnome-terminal; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Pour la batterie des ordinateurs portables (~/bin/battery)
|
||||||
|
#export BATPATH="/sys/class/power_supply/BAT0"
|
||||||
|
|
||||||
# Permit DBUS to be launched
|
# Permit DBUS to be launched
|
||||||
if [ "$0" = "/usr/sbin/lightdm-session" -a "$DESKTOP_SESSION" = "i3" ]; then
|
if [ "$0" = "/usr/sbin/lightdm-session" -a "$DESKTOP_SESSION" = "i3" ]; then
|
||||||
export $(gnome-keyring-daemon -s)
|
export $(gnome-keyring-daemon -s)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Démarrage de l'environnement préféré
|
||||||
|
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
|
||||||
|
case $HOST in
|
||||||
|
fuz | fuztest)
|
||||||
|
exec sway
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
: # on ne fait rien, car c'est .xinitrc qui lance i3
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
27
.ssh/config
27
.ssh/config
@ -90,3 +90,30 @@ Host proxy
|
|||||||
Hostname 163.172.155.15
|
Hostname 163.172.155.15
|
||||||
User root
|
User root
|
||||||
Port 22
|
Port 22
|
||||||
|
|
||||||
|
Host bastion
|
||||||
|
Hostname usine.michalon.eu
|
||||||
|
User od
|
||||||
|
Port 22
|
||||||
|
|
||||||
|
Host abeille
|
||||||
|
Hostname 192.168.1.90
|
||||||
|
User od
|
||||||
|
Port 22
|
||||||
|
ProxyJump bastion
|
||||||
|
|
||||||
|
Host mattermost
|
||||||
|
Hostname dossmann.net
|
||||||
|
User od
|
||||||
|
Port 4555
|
||||||
|
|
||||||
|
Host wekan
|
||||||
|
Hostname 192.168.101.11
|
||||||
|
User od
|
||||||
|
Port 22
|
||||||
|
ProxyJump mattermost
|
||||||
|
|
||||||
|
Host backup
|
||||||
|
Hostname 37.187.17.29
|
||||||
|
User root
|
||||||
|
Port 22
|
||||||
|
@ -8,6 +8,9 @@
|
|||||||
# make tmux display things in 256 colors
|
# make tmux display things in 256 colors
|
||||||
set -g default-terminal "tmux-256color"
|
set -g default-terminal "tmux-256color"
|
||||||
|
|
||||||
|
# make tmux use the default terminal
|
||||||
|
set -g default-command "${SHELL}"
|
||||||
|
|
||||||
# set scrollback history to 10000 (10k)
|
# set scrollback history to 10000 (10k)
|
||||||
set -g history-limit 10000
|
set -g history-limit 10000
|
||||||
|
|
||||||
@ -83,5 +86,5 @@ set -g status-left-length 30
|
|||||||
# Activer mon layout par defaut
|
# Activer mon layout par defaut
|
||||||
new -s projets -n dev
|
new -s projets -n dev
|
||||||
splitw -v -p 50 -t dev
|
splitw -v -p 50 -t dev
|
||||||
neww -n discussion
|
neww -n autre
|
||||||
selectw -t dev
|
selectw -t dev
|
||||||
|
1
.xinitrc
1
.xinitrc
@ -39,4 +39,5 @@ fi
|
|||||||
#exec xterm -geometry 80x66+0+0 -name login
|
#exec xterm -geometry 80x66+0+0 -name login
|
||||||
#exec $1
|
#exec $1
|
||||||
|
|
||||||
|
# Le lancement est fait dans `.profile` pour prendre en compte Wayland
|
||||||
exec i3
|
exec i3
|
||||||
|
@ -46,6 +46,7 @@ battery_status()
|
|||||||
case $(uname -s) in
|
case $(uname -s) in
|
||||||
"Linux")
|
"Linux")
|
||||||
BATPATH=${BATPATH:-/sys/class/power_supply/BAT1}
|
BATPATH=${BATPATH:-/sys/class/power_supply/BAT1}
|
||||||
|
[[ -h "${BATPATH}" ]] || return 0
|
||||||
STATUS=$BATPATH/status
|
STATUS=$BATPATH/status
|
||||||
[ "$1" = `cat $STATUS` ] || [ "$1" = "" ] || return 0
|
[ "$1" = `cat $STATUS` ] || [ "$1" = "" ] || return 0
|
||||||
if [ -f "$BATPATH/energy_full" ]; then
|
if [ -f "$BATPATH/energy_full" ]; then
|
||||||
|
@ -6,11 +6,19 @@
|
|||||||
|
|
||||||
directory="$HOME/wallpapers"
|
directory="$HOME/wallpapers"
|
||||||
minutes=15
|
minutes=15
|
||||||
|
PROGRAM=`which feh`
|
||||||
|
|
||||||
# Some tests
|
# Some tests
|
||||||
if [ -z "`which feh`" ]; then
|
if [[ "$XDG_SESSION_TYPE" -eq "wayland" ]]; then
|
||||||
|
PROGRAM=`which swaymsg`
|
||||||
|
if [ -z "${PROGRAM}" ]; then
|
||||||
|
echo "This script needs the swaymsg program."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
wayland=1
|
||||||
|
elif [ -z "${PROGRAM}" ]; then
|
||||||
echo "This script needs the feh program. Install it."
|
echo "This script needs the feh program. Install it."
|
||||||
i exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d '$directory' ]; then
|
if [ -d '$directory' ]; then
|
||||||
@ -40,7 +48,11 @@ while true; do
|
|||||||
|
|
||||||
# Change background
|
# Change background
|
||||||
file="${array_files["$NUMBER"]}"
|
file="${array_files["$NUMBER"]}"
|
||||||
|
if [[ -n wayland ]]; then
|
||||||
|
$PROGRAM output "*" bg "$directory/$file" fill
|
||||||
|
else
|
||||||
feh --bg-fill "$directory/$file"
|
feh --bg-fill "$directory/$file"
|
||||||
|
fi
|
||||||
|
|
||||||
# Wait some times
|
# Wait some times
|
||||||
sleep $seconds
|
sleep $seconds
|
||||||
|
3
bin/vpnfreshmile
Executable file
3
bin/vpnfreshmile
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
sudo su - root -c "cd /etc/openvpn/client/ && openvpn --config client.conf --daemon"
|
Reference in New Issue
Block a user