improve hyprland
This commit is contained in:
457
modules/optionnals/desktop/config/etc/xdg/dunstrc
Normal file
457
modules/optionnals/desktop/config/etc/xdg/dunstrc
Normal file
@@ -0,0 +1,457 @@
|
||||
[global]
|
||||
### Display ###
|
||||
|
||||
# Which monitor should the notifications be displayed on.
|
||||
monitor = 0
|
||||
|
||||
# Display notification on focused monitor. Possible modes are:
|
||||
# mouse: follow mouse pointer
|
||||
# keyboard: follow window with keyboard focus
|
||||
# none: don't follow anything
|
||||
#
|
||||
# "keyboard" needs a window manager that exports the
|
||||
# _NET_ACTIVE_WINDOW property.
|
||||
# This should be the case for almost all modern window managers.
|
||||
#
|
||||
# If this option is set to mouse or keyboard, the monitor option
|
||||
# will be ignored.
|
||||
follow = none
|
||||
|
||||
### Geometry ###
|
||||
|
||||
# dynamic width from 0 to 300
|
||||
# width = (0, 300)
|
||||
# constant width of 300
|
||||
width = (0,300)
|
||||
|
||||
# The maximum height of a single notification, excluding the frame.
|
||||
height = 300
|
||||
|
||||
# Position the notification in the top right corner
|
||||
origin = top-right
|
||||
|
||||
# Offset from the origin
|
||||
offset = 10x10
|
||||
|
||||
# Scale factor. It is auto-detected if value is 0.
|
||||
scale = 0
|
||||
|
||||
# Maximum number of notification (0 means no limit)
|
||||
notification_limit = 20
|
||||
|
||||
### Progress bar ###
|
||||
|
||||
# Turn on the progess bar. It appears when a progress hint is passed with
|
||||
# for example dunstify -h int:value:12
|
||||
progress_bar = true
|
||||
|
||||
# Set the progress bar height. This includes the frame, so make sure
|
||||
# it's at least twice as big as the frame width.
|
||||
progress_bar_height = 10
|
||||
|
||||
# Set the frame width of the progress bar
|
||||
progress_bar_frame_width = 1
|
||||
|
||||
# Set the minimum width for the progress bar
|
||||
progress_bar_min_width = 150
|
||||
|
||||
# Set the maximum width for the progress bar
|
||||
progress_bar_max_width = 300
|
||||
|
||||
# Corner radius for the progress bar. 0 disables rounded corners.
|
||||
progress_bar_corner_radius = 0
|
||||
|
||||
# Corner radius for the icon image.
|
||||
icon_corner_radius = 0
|
||||
|
||||
# Show how many messages are currently hidden (because of
|
||||
# notification_limit).
|
||||
indicate_hidden = yes
|
||||
|
||||
# The transparency of the window. Range: [0; 100].
|
||||
# This option will only work if a compositing window manager is
|
||||
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
|
||||
transparency = 20
|
||||
|
||||
# Draw a line of "separator_height" pixel height between two
|
||||
# notifications.
|
||||
# Set to 0 to disable.
|
||||
# If gap_size is greater than 0, this setting will be ignored.
|
||||
separator_height = 2
|
||||
|
||||
# Padding between text and separator.
|
||||
padding = 8
|
||||
|
||||
# Horizontal padding.
|
||||
horizontal_padding = 8
|
||||
|
||||
# Padding between text and icon.
|
||||
text_icon_padding = 0
|
||||
|
||||
# Defines width in pixels of frame around the notification window.
|
||||
# Set to 0 to disable.
|
||||
frame_width = 2
|
||||
|
||||
# Defines color of the frame around the notification window.
|
||||
frame_color = "#737994"
|
||||
|
||||
# Size of gap to display between notifications - requires a compositor.
|
||||
# If value is greater than 0, separator_height will be ignored and a border
|
||||
# of size frame_width will be drawn around each notification instead.
|
||||
# Click events on gaps do not currently propagate to applications below.
|
||||
gap_size = 5
|
||||
|
||||
# Define a color for the separator.
|
||||
# possible values are:
|
||||
# * auto: dunst tries to find a color fitting to the background;
|
||||
# * foreground: use the same color as the foreground;
|
||||
# * frame: use the same color as the frame;
|
||||
# * anything else will be interpreted as a X color.
|
||||
separator_color = frame
|
||||
|
||||
# Sort messages by urgency.
|
||||
sort = yes
|
||||
|
||||
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||
# for longer than idle_threshold seconds.
|
||||
# Set to 0 to disable.
|
||||
# A client can set the 'transient' hint to bypass this. See the rules
|
||||
# section for how to disable this if necessary
|
||||
# idle_threshold = 120
|
||||
|
||||
### Text ###
|
||||
|
||||
font = CaskaydiaCove Nerd Font 12
|
||||
|
||||
# The spacing between lines. If the height is smaller than the
|
||||
# font height, it will get raised to the font height.
|
||||
line_height = 0
|
||||
|
||||
# Possible values are:
|
||||
# full: Allow a small subset of html markup in notifications:
|
||||
# <b>bold</b>
|
||||
# <i>italic</i>
|
||||
# <s>strikethrough</s>
|
||||
# <u>underline</u>
|
||||
#
|
||||
# For a complete reference see
|
||||
# <https://docs.gtk.org/Pango/pango_markup.html>.
|
||||
#
|
||||
# strip: This setting is provided for compatibility with some broken
|
||||
# clients that send markup even though it's not enabled on the
|
||||
# server. Dunst will try to strip the markup but the parsing is
|
||||
# simplistic so using this option outside of matching rules for
|
||||
# specific applications *IS GREATLY DISCOURAGED*.
|
||||
#
|
||||
# no: Disable markup parsing, incoming notifications will be treated as
|
||||
# plain text. Dunst will not advertise that it has the body-markup
|
||||
# capability if this is set as a global setting.
|
||||
#
|
||||
# It's important to note that markup inside the format option will be parsed
|
||||
# regardless of what this is set to.
|
||||
markup = full
|
||||
|
||||
# The format of the message. Possible variables are:
|
||||
# %a appname
|
||||
# %s summary
|
||||
# %b body
|
||||
# %i iconname (including its path)
|
||||
# %I iconname (without its path)
|
||||
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||
# %n progress value if set without any extra characters
|
||||
# %% Literal %
|
||||
# Markup is allowed
|
||||
format = "<b>%s</b>\n%b"
|
||||
|
||||
# Alignment of message text.
|
||||
# Possible values are "left", "center" and "right".
|
||||
alignment = left
|
||||
|
||||
# Vertical alignment of message text and icon.
|
||||
# Possible values are "top", "center" and "bottom".
|
||||
vertical_alignment = center
|
||||
|
||||
# Show age of message if message is older than show_age_threshold
|
||||
# seconds.
|
||||
# Set to -1 to disable.
|
||||
show_age_threshold = 60
|
||||
|
||||
# Specify where to make an ellipsis in long lines.
|
||||
# Possible values are "start", "middle" and "end".
|
||||
ellipsize = middle
|
||||
|
||||
# Ignore newlines '\n' in notifications.
|
||||
ignore_newline = no
|
||||
|
||||
# Stack together notifications with the same content
|
||||
stack_duplicates = true
|
||||
|
||||
# Hide the count of stacked notifications with the same content
|
||||
hide_duplicate_count = false
|
||||
|
||||
# Display indicators for URLs (U) and actions (A).
|
||||
show_indicators = yes
|
||||
|
||||
### Icons ###
|
||||
|
||||
# Recursive icon lookup. You can set a single theme, instead of having to
|
||||
# define all lookup paths.
|
||||
enable_recursive_icon_lookup = true
|
||||
|
||||
# Set icon theme (only used for recursive icon lookup)
|
||||
icon_theme = oxygen
|
||||
# You can also set multiple icon themes, with the leftmost one being used first.
|
||||
# icon_theme = "Adwaita, breeze"
|
||||
|
||||
# Align icons left/right/top/off
|
||||
icon_position = left
|
||||
|
||||
# Scale small icons up to this size, set to 0 to disable. Helpful
|
||||
# for e.g. small files or high-dpi screens. In case of conflict,
|
||||
# max_icon_size takes precedence over this.
|
||||
min_icon_size = 32
|
||||
|
||||
# Scale larger icons down to this size, set to 0 to disable
|
||||
max_icon_size = 64
|
||||
|
||||
# Paths to default icons (only neccesary when not using recursive icon lookup)
|
||||
icon_path = /usr/share/icons/Papirus/16x16/status/:/usr/share/icons/gnome/Papirus/devices/
|
||||
|
||||
### History ###
|
||||
|
||||
# Should a notification popped up from history be sticky or timeout
|
||||
# as if it would normally do.
|
||||
sticky_history = yes
|
||||
|
||||
# Maximum amount of notifications kept in history
|
||||
history_length = 20
|
||||
|
||||
### Misc/Advanced ###
|
||||
|
||||
# dmenu path.
|
||||
dmenu = /usr/bin/dmenu -p dunst:
|
||||
|
||||
# Browser for opening urls in context menu.
|
||||
browser = /usr/bin/xdg-open
|
||||
|
||||
# Always run rule-defined scripts, even if the notification is suppressed
|
||||
always_run_script = true
|
||||
|
||||
# Define the title of the windows spawned by dunst
|
||||
title = Dunst
|
||||
|
||||
# Define the class of the windows spawned by dunst
|
||||
class = Dunst
|
||||
|
||||
# Define the corner radius of the notification window
|
||||
# in pixel size. If the radius is 0, you have no rounded
|
||||
# corners.
|
||||
# The radius will be automatically lowered if it exceeds half of the
|
||||
# notification height to avoid clipping text and/or icons.
|
||||
corner_radius = 10
|
||||
|
||||
# Ignore the dbus closeNotification message.
|
||||
# Useful to enforce the timeout set by dunst configuration. Without this
|
||||
# parameter, an application may close the notification sent before the
|
||||
# user defined timeout.
|
||||
ignore_dbusclose = false
|
||||
|
||||
### Wayland ###
|
||||
# These settings are Wayland-specific. They have no effect when using X11
|
||||
|
||||
# Uncomment this if you want to let notications appear under fullscreen
|
||||
# applications (default: overlay)
|
||||
# layer = top
|
||||
|
||||
# Set this to true to use X11 output on Wayland.
|
||||
force_xwayland = false
|
||||
|
||||
### Legacy
|
||||
|
||||
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||
# This setting is provided for compatibility with older nVidia drivers that
|
||||
# do not support RandR and using it on systems that support RandR is highly
|
||||
# discouraged.
|
||||
#
|
||||
# By enabling this setting dunst will not be able to detect when a monitor
|
||||
# is connected or disconnected which might break follow mode if the screen
|
||||
# layout changes.
|
||||
force_xinerama = false
|
||||
|
||||
### mouse
|
||||
|
||||
# Defines list of actions for each mouse event
|
||||
# Possible values are:
|
||||
# * none: Don't do anything.
|
||||
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
||||
# such action, open the context menu.
|
||||
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
||||
# ones, open the context menu.
|
||||
# * close_current: Close current notification.
|
||||
# * close_all: Close all notifications.
|
||||
# * context: Open context menu for the notification.
|
||||
# * context_all: Open context menu for all notifications.
|
||||
# These values can be strung together for each mouse event, and
|
||||
# will be executed in sequence.
|
||||
mouse_left_click = close_current
|
||||
mouse_middle_click = do_action, close_current
|
||||
mouse_right_click = close_all
|
||||
|
||||
# Experimental features that may or may not work correctly. Do not expect them
|
||||
# to have a consistent behaviour across releases.
|
||||
[experimental]
|
||||
# Calculate the dpi to use on a per-monitor basis.
|
||||
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||
# using the resolution and physical size. This might be useful in setups
|
||||
# where there are multiple screens with very different dpi values.
|
||||
per_monitor_dpi = false
|
||||
|
||||
|
||||
[urgency_low]
|
||||
# IMPORTANT: colors have to be defined in quotation marks.
|
||||
# Otherwise the "#" and following would be interpreted as a comment.
|
||||
background = "#303446"
|
||||
foreground = "#c6d0f5"
|
||||
timeout = 5
|
||||
# Icon for notifications with low urgency, uncomment to enable
|
||||
#default_icon = /path/to/icon
|
||||
|
||||
[urgency_normal]
|
||||
background = "#303446"
|
||||
foreground = "#c6d0f5"
|
||||
timeout = 5
|
||||
# Icon for notifications with normal urgency, uncomment to enable
|
||||
#default_icon = /path/to/icon
|
||||
|
||||
[urgency_critical]
|
||||
background = "#303446"
|
||||
foreground = "#c6d0f5"
|
||||
frame_color = "#e78284"
|
||||
timeout = 20
|
||||
# Icon for notifications with critical urgency, uncomment to enable
|
||||
#default_icon = /path/to/icon
|
||||
|
||||
# Every section that isn't one of the above is interpreted as a rules to
|
||||
# override settings for certain messages.
|
||||
#
|
||||
# Messages can be matched by
|
||||
# appname (discouraged, see desktop_entry)
|
||||
# body
|
||||
# category
|
||||
# desktop_entry
|
||||
# icon
|
||||
# match_transient
|
||||
# msg_urgency
|
||||
# stack_tag
|
||||
# summary
|
||||
#
|
||||
# and you can override the
|
||||
# background
|
||||
# foreground
|
||||
# format
|
||||
# frame_color
|
||||
# fullscreen
|
||||
# new_icon
|
||||
# set_stack_tag
|
||||
# set_transient
|
||||
# set_category
|
||||
# timeout
|
||||
# urgency
|
||||
# icon_position
|
||||
# skip_display
|
||||
# history_ignore
|
||||
# action_name
|
||||
# word_wrap
|
||||
# ellipsize
|
||||
# alignment
|
||||
# hide_text
|
||||
#
|
||||
# Shell-like globbing will get expanded.
|
||||
#
|
||||
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
||||
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
||||
# the desktop-entry won't get localized.
|
||||
#
|
||||
# SCRIPTING
|
||||
# You can specify a script that gets run when the rule matches by
|
||||
# setting the "script" option.
|
||||
# The script will be called as follows:
|
||||
# script appname summary body icon urgency
|
||||
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||
#
|
||||
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||
# to find fitting options for rules.
|
||||
|
||||
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
||||
# client
|
||||
#[transient_disable]
|
||||
# match_transient = yes
|
||||
# set_transient = no
|
||||
#
|
||||
# Make the handling of transient notifications more strict by making them not
|
||||
# be placed in history.
|
||||
#[transient_history_ignore]
|
||||
# match_transient = yes
|
||||
# history_ignore = yes
|
||||
|
||||
# fullscreen values
|
||||
# show: show the notifications, regardless if there is a fullscreen window opened
|
||||
# delay: displays the new notification, if there is no fullscreen window active
|
||||
# If the notification is already drawn, it won't get undrawn.
|
||||
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
||||
# withdrawn from screen again and will get delayed like a new notification
|
||||
#[fullscreen_delay_everything]
|
||||
# fullscreen = delay
|
||||
#[fullscreen_show_critical]
|
||||
# msg_urgency = critical
|
||||
# fullscreen = show
|
||||
|
||||
#[espeak]
|
||||
# summary = "*"
|
||||
# script = dunst_espeak.sh
|
||||
|
||||
#[script-test]
|
||||
# summary = "*script*"
|
||||
# script = dunst_test.sh
|
||||
|
||||
#[ignore]
|
||||
# # This notification will not be displayed
|
||||
# summary = "foobar"
|
||||
# skip_display = true
|
||||
|
||||
#[history-ignore]
|
||||
# # This notification will not be saved in history
|
||||
# summary = "foobar"
|
||||
# history_ignore = yes
|
||||
|
||||
#[skip-display]
|
||||
# # This notification will not be displayed, but will be included in the history
|
||||
# summary = "foobar"
|
||||
# skip_display = yes
|
||||
|
||||
#[signed_on]
|
||||
# appname = Pidgin
|
||||
# summary = "*signed on*"
|
||||
# urgency = low
|
||||
#
|
||||
#[signed_off]
|
||||
# appname = Pidgin
|
||||
# summary = *signed off*
|
||||
# urgency = low
|
||||
#
|
||||
#[says]
|
||||
# appname = Pidgin
|
||||
# summary = *says*
|
||||
# urgency = critical
|
||||
#
|
||||
#[twitter]
|
||||
# appname = Pidgin
|
||||
# summary = *twitter.com*
|
||||
# urgency = normal
|
||||
#
|
||||
#[stack-volumes]
|
||||
# appname = "some_volume_notifiers"
|
||||
# set_stack_tag = "volume"
|
||||
#
|
||||
# vim: ft=cfg
|
||||
77
modules/optionnals/desktop/config/etc/xdg/hypr/frappe.conf
Normal file
77
modules/optionnals/desktop/config/etc/xdg/hypr/frappe.conf
Normal file
@@ -0,0 +1,77 @@
|
||||
$rosewater = rgb(f2d5cf)
|
||||
$rosewaterAlpha = f2d5cf
|
||||
|
||||
$flamingo = rgb(eebebe)
|
||||
$flamingoAlpha = eebebe
|
||||
|
||||
$pink = rgb(f4b8e4)
|
||||
$pinkAlpha = f4b8e4
|
||||
|
||||
$mauve = rgb(ca9ee6)
|
||||
$mauveAlpha = ca9ee6
|
||||
|
||||
$red = rgb(e78284)
|
||||
$redAlpha = e78284
|
||||
|
||||
$maroon = rgb(ea999c)
|
||||
$maroonAlpha = ea999c
|
||||
|
||||
$peach = rgb(ef9f76)
|
||||
$peachAlpha = ef9f76
|
||||
|
||||
$yellow = rgb(e5c890)
|
||||
$yellowAlpha = e5c890
|
||||
|
||||
$green = rgb(a6d189)
|
||||
$greenAlpha = a6d189
|
||||
|
||||
$teal = rgb(81c8be)
|
||||
$tealAlpha = 81c8be
|
||||
|
||||
$sky = rgb(99d1db)
|
||||
$skyAlpha = 99d1db
|
||||
|
||||
$sapphire = rgb(85c1dc)
|
||||
$sapphireAlpha = 85c1dc
|
||||
|
||||
$blue = rgb(8caaee)
|
||||
$blueAlpha = 8caaee
|
||||
|
||||
$lavender = rgb(babbf1)
|
||||
$lavenderAlpha = babbf1
|
||||
|
||||
$text = rgb(c6d0f5)
|
||||
$textAlpha = c6d0f5
|
||||
|
||||
$subtext1 = rgb(b5bfe2)
|
||||
$subtext1Alpha = b5bfe2
|
||||
|
||||
$subtext0 = rgb(a5adce)
|
||||
$subtext0Alpha = a5adce
|
||||
|
||||
$overlay2 = rgb(949cbb)
|
||||
$overlay2Alpha = 949cbb
|
||||
|
||||
$overlay1 = rgb(838ba7)
|
||||
$overlay1Alpha = 838ba7
|
||||
|
||||
$overlay0 = rgb(737994)
|
||||
$overlay0Alpha = 737994
|
||||
|
||||
$surface2 = rgb(626880)
|
||||
$surface2Alpha = 626880
|
||||
|
||||
$surface1 = rgb(51576d)
|
||||
$surface1Alpha = 51576d
|
||||
|
||||
$surface0 = rgb(414559)
|
||||
$surface0Alpha = 414559
|
||||
|
||||
$base = rgb(303446)
|
||||
$baseAlpha = 303446
|
||||
|
||||
$mantle = rgb(292c3c)
|
||||
$mantleAlpha = 292c3c
|
||||
|
||||
$crust = rgb(232634)
|
||||
$crustAlpha = 232634
|
||||
@@ -0,0 +1,14 @@
|
||||
################
|
||||
### MONITORS ###
|
||||
################
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
monitor=Virtual-1,1920x1080,0x0,1
|
||||
|
||||
workspace = 1, monitor:Virtual-1
|
||||
workspace = 2, monitor:Virtual-1
|
||||
workspace = 3, monitor:Virtual-1
|
||||
workspace = 4, monitor:Virtual-1
|
||||
workspace = 5, monitor:Virtual-1
|
||||
workspace = 6, monitor:Virtual-1
|
||||
workspace = 7, monitor:Virtual-1
|
||||
workspace = 8, monitor:Virtual-1
|
||||
322
modules/optionnals/desktop/config/etc/xdg/hypr/hyprland.conf
Normal file
322
modules/optionnals/desktop/config/etc/xdg/hypr/hyprland.conf
Normal file
@@ -0,0 +1,322 @@
|
||||
source = /etc/xdg/hypr/hyprland-host.conf
|
||||
|
||||
#################
|
||||
### ECOSYSTEM ###
|
||||
#################
|
||||
|
||||
ecosystem {
|
||||
no_update_news = true
|
||||
no_donation_nag = true
|
||||
}
|
||||
|
||||
###################
|
||||
### MY PROGRAMS ###
|
||||
###################
|
||||
|
||||
$terminal = kitty
|
||||
source = /etc/xdg/hypr/rofi.conf
|
||||
|
||||
#################
|
||||
### AUTOSTART ###
|
||||
#################
|
||||
|
||||
exec-once = waybar &
|
||||
exec-once = hyprpaper
|
||||
|
||||
#############################
|
||||
### ENVIRONMENT VARIABLES ###
|
||||
#############################
|
||||
|
||||
env = LIBVA_DRIVER_NAME,nvidia
|
||||
env = __GLX_VENDOR_LIBRARY_NAME,nvidia
|
||||
env = XCURSOR_SIZE,24
|
||||
env = HYPRCURSOR_SIZE,24
|
||||
|
||||
###################
|
||||
### PERMISSIONS ###
|
||||
###################
|
||||
|
||||
# permission = /usr/(bin|local/bin)/grim, screencopy, allow
|
||||
# permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow
|
||||
# permission = /usr/(bin|local/bin)/hyprpm, plugin, allow
|
||||
|
||||
|
||||
#####################
|
||||
### LOOK AND FEEL ###
|
||||
#####################
|
||||
|
||||
general {
|
||||
gaps_in = 5
|
||||
gaps_out = 10
|
||||
|
||||
border_size = 2
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
# col.active_border = rgb(81c8be) rgb(8caaee) 45deg
|
||||
col.active_border = rgb(81c8be)
|
||||
col.inactive_border = rgb(737994)
|
||||
|
||||
# Set to true enable resizing windows by clicking and dragging on borders and gaps
|
||||
resize_on_border = false
|
||||
|
||||
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||
allow_tearing = false
|
||||
|
||||
layout = dwindle
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#decoration
|
||||
decoration {
|
||||
rounding = 10
|
||||
rounding_power = 2
|
||||
|
||||
# Change transparency of focused and unfocused windows
|
||||
active_opacity = 0.95
|
||||
inactive_opacity = 0.80
|
||||
|
||||
shadow {
|
||||
enabled = false
|
||||
range = 4
|
||||
render_power = 3
|
||||
color = rgba(1a1a1aee)
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||
blur {
|
||||
enabled = true
|
||||
size = 3
|
||||
passes = 1
|
||||
|
||||
vibrancy = 0.1696
|
||||
}
|
||||
}
|
||||
|
||||
# https://wiki.hypr.land/Configuring/Variables/#group
|
||||
group {
|
||||
col.border_active = rgb(81c8be) # Violet par exemple
|
||||
col.border_inactive = rgb(737994) # Gris par exemple
|
||||
col.border_locked_active = rgb(81c8be) # Rose
|
||||
col.border_locked_inactive = rgb(737994) # Gris foncé
|
||||
groupbar {
|
||||
font_family = CaskaydiaCove Nerd Font
|
||||
font_size = 16
|
||||
font_weight_active = bold
|
||||
font_weight_inactive = normal
|
||||
indicator_gap = 5
|
||||
indicator_height = 2
|
||||
text_color = rgb(81c8be)
|
||||
col.active = rgb(81c8be)
|
||||
col.inactive = rgb(737994)
|
||||
col.locked_inactive = rgb(737994)
|
||||
gaps_in = 10
|
||||
gaps_out = 5
|
||||
}
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||
animations {
|
||||
enabled = true, please :)
|
||||
|
||||
# Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||
|
||||
bezier = easeOutQuint,0.23,1,0.32,1
|
||||
bezier = easeInOutCubic,0.65,0.05,0.36,1
|
||||
bezier = linear,0,0,1,1
|
||||
bezier = almostLinear,0.5,0.5,0.75,1.0
|
||||
bezier = quick,0.15,0,0.1,1
|
||||
|
||||
animation = global, 1, 10, default
|
||||
animation = border, 1, 5.39, easeOutQuint
|
||||
animation = windows, 1, 4.79, easeOutQuint
|
||||
animation = windowsIn, 1, 4.1, easeOutQuint, popin 87%
|
||||
animation = windowsOut, 1, 1.49, linear, popin 87%
|
||||
animation = fadeIn, 1, 1.73, almostLinear
|
||||
animation = fadeOut, 1, 1.46, almostLinear
|
||||
animation = fade, 1, 3.03, quick
|
||||
animation = layers, 1, 3.81, easeOutQuint
|
||||
animation = layersIn, 1, 4, easeOutQuint, fade
|
||||
animation = layersOut, 1, 1.5, linear, fade
|
||||
animation = fadeLayersIn, 1, 1.79, almostLinear
|
||||
animation = fadeLayersOut, 1, 1.39, almostLinear
|
||||
animation = workspaces, 1, 1.94, almostLinear, slidefade
|
||||
}
|
||||
|
||||
# Ref https://wiki.hyprland.org/Configuring/Workspace-Rules/
|
||||
# "Smart gaps" / "No gaps when only"
|
||||
# uncomment all if you wish to use that.
|
||||
# workspace = w[tv1], gapsout:0, gapsin:0
|
||||
# workspace = f[1], gapsout:0, gapsin:0
|
||||
# windowrule = bordersize 0, floating:0, onworkspace:w[tv1]
|
||||
# windowrule = rounding 0, floating:0, onworkspace:w[tv1]
|
||||
# windowrule = bordersize 0, floating:0, onworkspace:f[1]
|
||||
# windowrule = rounding 0, floating:0, onworkspace:f[1]
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||
dwindle {
|
||||
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||
preserve_split = true # You probably want this
|
||||
force_split = 2
|
||||
}
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
|
||||
master {
|
||||
new_status = master
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#misc
|
||||
misc {
|
||||
force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers
|
||||
disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :(
|
||||
}
|
||||
|
||||
|
||||
#############
|
||||
### INPUT ###
|
||||
#############
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#input
|
||||
input {
|
||||
kb_layout = qwerty-fr
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
|
||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||
|
||||
touchpad {
|
||||
natural_scroll = false
|
||||
}
|
||||
|
||||
numlock_by_default = true
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||
gestures {
|
||||
workspace_swipe = false
|
||||
}
|
||||
|
||||
# Example per-device config
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
||||
device {
|
||||
name = epic-mouse-v1
|
||||
sensitivity = -0.5
|
||||
}
|
||||
|
||||
|
||||
###################
|
||||
### KEYBINDINGS ###
|
||||
###################
|
||||
|
||||
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||
# Apps shortcut
|
||||
bind = $mainMod, D, exec, $rofi
|
||||
bind = $mainMod, L, exec, /etc/xdg/scripts/wayland-disconnect.sh
|
||||
bind = $mainMod, M, exec, /etc/xdg/scripts/wayland-mpv.sh
|
||||
bind = $mainMod SHIFT, P, exec, pavucontrol
|
||||
bind = $mainMod SHIFT, T, exec, teams-for-linux
|
||||
bind = $mainMod SHIFT, D, exec, discord
|
||||
bind = $mainMod SHIFT, F, exec, firefox
|
||||
bind = $mainMod SHIFT, S, exec, steam
|
||||
bind = $mainMod SHIFT, L, exec, lutris
|
||||
bind = ,Print, exec, grim -g "$(slurp)" - | swappy -f -
|
||||
|
||||
# Reload Restart config | moved to rofi
|
||||
bind = $mainMod, E, exit,
|
||||
|
||||
# Kill focused window
|
||||
bind = $mainMod, Return, exec, $terminal
|
||||
|
||||
# Créer un groupe
|
||||
bind = SUPER, G, togglegroup
|
||||
# Naviguer dans le groupe
|
||||
bind = SUPER, TAB, changegroupactive
|
||||
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, F, fullscreenstate, 3
|
||||
bind = $mainMod, V, togglefloating,
|
||||
bind = $mainMod, SPACE, togglesplit, # dwindle
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
|
||||
# Déplacement de fenêtres avec CONTROL + flèches
|
||||
bind = $mainMod CONTROL, left, movewindow, l
|
||||
bind = $mainMod CONTROL, right, movewindow, r
|
||||
bind = $mainMod CONTROL, up, movewindow, u
|
||||
bind = $mainMod CONTROL, down, movewindow, d
|
||||
|
||||
# Navigation workspace avec keypad (NumLock OFF)
|
||||
bind = $mainMod, KP_End, workspace, 1
|
||||
bind = $mainMod, KP_Down, workspace, 2
|
||||
bind = $mainMod, KP_Next, workspace, 3
|
||||
bind = $mainMod, KP_Left, workspace, 4
|
||||
bind = $mainMod, KP_Begin, workspace, 5
|
||||
bind = $mainMod, KP_Right, workspace, 6
|
||||
bind = $mainMod, KP_Home, workspace, 7
|
||||
bind = $mainMod, KP_Up, workspace, 8
|
||||
|
||||
# Déplacement de fenêtre avec keypad
|
||||
bind = $mainMod CONTROL, KP_End, movetoworkspacesilent, 1
|
||||
bind = $mainMod CONTROL, KP_Down, movetoworkspacesilent, 2
|
||||
bind = $mainMod CONTROL, KP_Next, movetoworkspacesilent, 3
|
||||
bind = $mainMod CONTROL, KP_Left, movetoworkspacesilent, 4
|
||||
bind = $mainMod CONTROL, KP_Begin, movetoworkspacesilent, 5
|
||||
bind = $mainMod CONTROL, KP_Right, movetoworkspacesilent, 6
|
||||
bind = $mainMod CONTROL, KP_Home, movetoworkspacesilent, 7
|
||||
bind = $mainMod CONTROL, KP_Up, movetoworkspacesilent, 8
|
||||
|
||||
# Example special workspace (scratchpad)
|
||||
bind = $mainMod, S, togglespecialworkspace, magic
|
||||
bind = $mainMod CONTROL, S, movetoworkspacesilent, special:magic
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
bind = $mainMod, mouse_down, workspace, e+1
|
||||
bind = $mainMod, mouse_up, workspace, e-1
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+
|
||||
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-
|
||||
|
||||
# Requires playerctl
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
|
||||
##############################
|
||||
### WINDOWS AND WORKSPACES ###
|
||||
##############################
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
# See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules
|
||||
|
||||
# Example windowrule
|
||||
# windowrule = float,class:^(kitty)$,title:^(kitty)$
|
||||
|
||||
# Ignore maximize requests from apps. You'll probably like this.
|
||||
windowrule = suppressevent maximize, class:.*
|
||||
|
||||
# Fix some dragging issues with XWayland
|
||||
windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||
|
||||
# Supprimer la transparence pour des applications spécifiques
|
||||
windowrulev2 = opacity 1.0 override,class:firefox
|
||||
windowrulev2 = opacity 1.0 override,class:^(chromium)$
|
||||
windowrulev2 = opacity 1.0 override,class:^(mpv)$
|
||||
windowrulev2 = opacity 1.0 override,class:^(mpv)$
|
||||
|
||||
windowrulev2 = fullscreen,class:^(mpv)$
|
||||
@@ -0,0 +1,80 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: Catppuccin-Frappe
|
||||
## author: Pocco81 (https://github.com/Pocco81)
|
||||
## license: MIT
|
||||
## upstream: https://github.com/catppuccin/kitty/blob/main/frappe.conf
|
||||
## blurb: Soothing pastel theme for the high-spirited!
|
||||
|
||||
|
||||
|
||||
# The basic colors
|
||||
foreground #C6D0F5
|
||||
background #303446
|
||||
selection_foreground #303446
|
||||
selection_background #F2D5CF
|
||||
|
||||
# Cursor colors
|
||||
cursor #F2D5CF
|
||||
cursor_text_color #303446
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #F2D5CF
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #BABBF1
|
||||
inactive_border_color #737994
|
||||
bell_border_color #E5C890
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color system
|
||||
macos_titlebar_color system
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #232634
|
||||
active_tab_background #CA9EE6
|
||||
inactive_tab_foreground #C6D0F5
|
||||
inactive_tab_background #292C3C
|
||||
tab_bar_background #232634
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #303446
|
||||
mark1_background #BABBF1
|
||||
mark2_foreground #303446
|
||||
mark2_background #CA9EE6
|
||||
mark3_foreground #303446
|
||||
mark3_background #85C1DC
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #51576D
|
||||
color8 #626880
|
||||
|
||||
# red
|
||||
color1 #E78284
|
||||
color9 #E78284
|
||||
|
||||
# green
|
||||
color2 #A6D189
|
||||
color10 #A6D189
|
||||
|
||||
# yellow
|
||||
color3 #E5C890
|
||||
color11 #E5C890
|
||||
|
||||
# blue
|
||||
color4 #8CAAEE
|
||||
color12 #8CAAEE
|
||||
|
||||
# magenta
|
||||
color5 #F4B8E4
|
||||
color13 #F4B8E4
|
||||
|
||||
# cyan
|
||||
color6 #81C8BE
|
||||
color14 #81C8BE
|
||||
|
||||
# white
|
||||
color7 #B5BFE2
|
||||
color15 #A5ADCE
|
||||
51
modules/optionnals/desktop/config/etc/xdg/kitty/kitty.conf
Normal file
51
modules/optionnals/desktop/config/etc/xdg/kitty/kitty.conf
Normal file
@@ -0,0 +1,51 @@
|
||||
# BEGIN_KITTY_THEME
|
||||
# Catppuccin-Frappe
|
||||
include current-theme.conf
|
||||
# END_KITTY_THEME
|
||||
|
||||
#Fonts
|
||||
font_family DejaVuSansM Nerd Font Mono
|
||||
bold_font auto
|
||||
italic_font auto
|
||||
bold_italic_font auto
|
||||
font_size 14.0
|
||||
|
||||
# Scroll
|
||||
scrollback_lines 65635
|
||||
scrollback_indicator_opacity 0.5
|
||||
|
||||
#Url
|
||||
open_url_with firefox
|
||||
underline_hyperlinks always
|
||||
|
||||
copy_on_select clipboard
|
||||
select_by_word_characters @-./_~?&%+#!
|
||||
sync_to_monitor yes
|
||||
|
||||
# Layout
|
||||
enabled_layouts vertical
|
||||
|
||||
### Shortcut
|
||||
# Global
|
||||
map alt+up change_font_size all +2.0
|
||||
map alt+down change_font_size all -2.0
|
||||
map alt+= change_font_size all 0
|
||||
map alt+u open_url_with_hints
|
||||
map shift+up scroll_line_up
|
||||
map shift+down scroll_line_down
|
||||
map shift+page_up scroll_page_up
|
||||
map shift+page_down scroll_page_down
|
||||
mouse_map alt+middle press ungrabbed paste_from_clipboard
|
||||
# Layout
|
||||
map alt+s new_window
|
||||
map alt+p previous_window
|
||||
map alt+n next_window
|
||||
# Tab
|
||||
map alt+enter new_tab
|
||||
map alt+left previous_tab
|
||||
map alt+right next_tab
|
||||
map alt+tab next_tab
|
||||
map alt+t set_tab_title
|
||||
# Copy paste
|
||||
map ctrl+alt+c copy_to_clipboard
|
||||
map ctrl+alt+v paste_from_clipboard
|
||||
28
modules/optionnals/desktop/config/etc/xdg/rofi/colors.rasi
Normal file
28
modules/optionnals/desktop/config/etc/xdg/rofi/colors.rasi
Normal file
@@ -0,0 +1,28 @@
|
||||
* {
|
||||
rosewater: #f2d5cf;
|
||||
flamingo: #eebebe;
|
||||
pink: #f4b8e4;
|
||||
mauve: #ca9ee6;
|
||||
red: #e78284;
|
||||
maroon: #ea999c;
|
||||
peach: #ef9f76;
|
||||
yellow: #e5c890;
|
||||
green: #a6d189;
|
||||
teal: #81c8be;
|
||||
sky: #99d1db;
|
||||
sapphire: #85c1dc;
|
||||
blue: #8caaee;
|
||||
lavender: #babbf1;
|
||||
text: #c6d0f5;
|
||||
subtext1: #b5bfe2;
|
||||
subtext0: #a5adce;
|
||||
overlay2: #949cbb;
|
||||
overlay1: #838ba7;
|
||||
overlay0: #737994;
|
||||
surface2: #626880;
|
||||
surface1: #51576d;
|
||||
surface0: #414559;
|
||||
base: #303446;
|
||||
mantle: #292c3c;
|
||||
crust: #232634;
|
||||
}
|
||||
152
modules/optionnals/desktop/config/etc/xdg/rofi/config.rasi
Normal file
152
modules/optionnals/desktop/config/etc/xdg/rofi/config.rasi
Normal file
@@ -0,0 +1,152 @@
|
||||
configuration {
|
||||
modes: "window,drun,run,ssh,combi";
|
||||
/* font: "CaskaydiaCove Nerd Font 12"; */
|
||||
/* location: 0;*/
|
||||
/* yoffset: 0;*/
|
||||
/* xoffset: 0;*/
|
||||
/* fixed-num-lines: true;*/
|
||||
show-icons: false;
|
||||
terminal: "kitty";
|
||||
/* ssh-client: "ssh";*/
|
||||
/* ssh-command: "{terminal} -e {ssh-client} {host} [-p {port}]";*/
|
||||
/* run-command: "{cmd}";*/
|
||||
/* run-list-command: "";*/
|
||||
/* run-shell-command: "{terminal} -e {cmd}";*/
|
||||
/* window-command: "wmctrl -i -R {window}";*/
|
||||
/* window-match-fields: "all";*/
|
||||
/* icon-theme: "Papirus"; */
|
||||
/* drun-match-fields: "name,generic,exec,categories,keywords";*/
|
||||
/* drun-categories: ;*/
|
||||
/* drun-show-actions: false;*/
|
||||
/* drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";*/
|
||||
/* drun-url-launcher: "xdg-open";*/
|
||||
/* disable-history: false;*/
|
||||
/* ignored-prefixes: "";*/
|
||||
/* sort: false;*/
|
||||
/* sorting-method: "normal";*/
|
||||
case-sensitive: false;
|
||||
/* cycle: true;*/
|
||||
/* sidebar-mode: false;*/
|
||||
/* hover-select: false;*/
|
||||
/* eh: 1;*/
|
||||
/* auto-select: false;*/
|
||||
/* parse-hosts: false;*/
|
||||
/* parse-known-hosts: true;*/
|
||||
/* combi-modes: "window,run";*/
|
||||
/* matching: "normal";*/
|
||||
/* tokenize: true;*/
|
||||
/* m: "-5";*/
|
||||
/* filter: ;*/
|
||||
/* dpi: -1;*/
|
||||
/* threads: 0;*/
|
||||
/* scroll-method: 0;*/
|
||||
/* window-format: "{w} {c} {t}";*/
|
||||
/* click-to-exit: true;*/
|
||||
/* max-history-size: 25;*/
|
||||
/* combi-hide-mode-prefix: false;*/
|
||||
/* combi-display-format: "{mode} {text}";*/
|
||||
/* matching-negate-char: '-' /* unsupported */;*/
|
||||
/* cache-dir: ;*/
|
||||
/* window-thumbnail: false;*/
|
||||
/* drun-use-desktop-cache: false;*/
|
||||
/* drun-reload-desktop-cache: false;*/
|
||||
/* normalize-match: false;*/
|
||||
/* steal-focus: false;*/
|
||||
/* application-fallback-icon: ;*/
|
||||
/* refilter-timeout-limit: 8192;*/
|
||||
/* xserver-i300-workaround: false;*/
|
||||
/* pid: "/run/user/0/rofi.pid";*/
|
||||
/* display-window: ;*/
|
||||
/* display-windowcd: ;*/
|
||||
/* display-run: ;*/
|
||||
/* display-ssh: ;*/
|
||||
/* display-drun: ;*/
|
||||
/* display-combi: ;*/
|
||||
/* display-keys: ;*/
|
||||
/* display-filebrowser: ;*/
|
||||
/* kb-primary-paste: "Control+V,Shift+Insert";*/
|
||||
/* kb-secondary-paste: "Control+v,Insert";*/
|
||||
/* kb-clear-line: "Control+w";*/
|
||||
/* kb-move-front: "Control+a";*/
|
||||
/* kb-move-end: "Control+e";*/
|
||||
/* kb-move-word-back: "Alt+b,Control+Left";*/
|
||||
/* kb-move-word-forward: "Alt+f,Control+Right";*/
|
||||
/* kb-move-char-back: "Left,Control+b";*/
|
||||
/* kb-move-char-forward: "Right,Control+f";*/
|
||||
/* kb-remove-word-back: "Control+Alt+h,Control+BackSpace";*/
|
||||
/* kb-remove-word-forward: "Control+Alt+d";*/
|
||||
/* kb-remove-char-forward: "Delete,Control+d";*/
|
||||
/* kb-remove-char-back: "BackSpace,Shift+BackSpace,Control+h";*/
|
||||
/* kb-remove-to-eol: "Control+k";*/
|
||||
/* kb-remove-to-sol: "Control+u";*/
|
||||
/* kb-accept-entry: "Control+j,Control+m,Return,KP_Enter";*/
|
||||
/* kb-accept-custom: "Control+Return";*/
|
||||
/* kb-accept-custom-alt: "Control+Shift+Return";*/
|
||||
/* kb-accept-alt: "Shift+Return";*/
|
||||
/* kb-delete-entry: "Shift+Delete";*/
|
||||
/* kb-mode-next: "Shift+Right,Control+Tab";*/
|
||||
/* kb-mode-previous: "Shift+Left,Control+ISO_Left_Tab";*/
|
||||
/* kb-mode-complete: "Control+l";*/
|
||||
/* kb-row-left: "Control+Page_Up";*/
|
||||
/* kb-row-right: "Control+Page_Down";*/
|
||||
/* kb-row-up: "Up,Control+p";*/
|
||||
/* kb-row-down: "Down,Control+n";*/
|
||||
kb-row-tab: "Control+space";
|
||||
kb-element-next: "";
|
||||
/* kb-element-prev: "ISO_Left_Tab";*/
|
||||
/* kb-page-prev: "Page_Up";*/
|
||||
/* kb-page-next: "Page_Down";*/
|
||||
/* kb-row-first: "Home,KP_Home";*/
|
||||
/* kb-row-last: "End,KP_End";*/
|
||||
kb-row-select: "Tab";
|
||||
/* kb-screenshot: "Alt+S";*/
|
||||
/* kb-ellipsize: "Alt+period";*/
|
||||
/* kb-toggle-case-sensitivity: "grave,dead_grave";*/
|
||||
/* kb-toggle-sort: "Alt+grave";*/
|
||||
/* kb-cancel: "Escape,Control+g,Control+bracketleft";*/
|
||||
/* kb-custom-1: "Alt+1";*/
|
||||
/* kb-custom-2: "Alt+2";*/
|
||||
/* kb-custom-3: "Alt+3";*/
|
||||
/* kb-custom-4: "Alt+4";*/
|
||||
/* kb-custom-5: "Alt+5";*/
|
||||
/* kb-custom-6: "Alt+6";*/
|
||||
/* kb-custom-7: "Alt+7";*/
|
||||
/* kb-custom-8: "Alt+8";*/
|
||||
/* kb-custom-9: "Alt+9";*/
|
||||
/* kb-custom-10: "Alt+0";*/
|
||||
/* kb-custom-11: "Alt+exclam";*/
|
||||
/* kb-custom-12: "Alt+at";*/
|
||||
/* kb-custom-13: "Alt+numbersign";*/
|
||||
/* kb-custom-14: "Alt+dollar";*/
|
||||
/* kb-custom-15: "Alt+percent";*/
|
||||
/* kb-custom-16: "Alt+dead_circumflex";*/
|
||||
/* kb-custom-17: "Alt+ampersand";*/
|
||||
/* kb-custom-18: "Alt+asterisk";*/
|
||||
/* kb-custom-19: "Alt+parenleft";*/
|
||||
/* kb-select-1: "Super+1";*/
|
||||
/* kb-select-2: "Super+2";*/
|
||||
/* kb-select-3: "Super+3";*/
|
||||
/* kb-select-4: "Super+4";*/
|
||||
/* kb-select-5: "Super+5";*/
|
||||
/* kb-select-6: "Super+6";*/
|
||||
/* kb-select-7: "Super+7";*/
|
||||
/* kb-select-8: "Super+8";*/
|
||||
/* kb-select-9: "Super+9";*/
|
||||
/* kb-select-10: "Super+0";*/
|
||||
/* ml-row-left: "ScrollLeft";*/
|
||||
/* ml-row-right: "ScrollRight";*/
|
||||
/* ml-row-up: "ScrollUp";*/
|
||||
/* ml-row-down: "ScrollDown";*/
|
||||
/* me-select-entry: "MousePrimary";*/
|
||||
/* me-accept-entry: "MouseDPrimary";*/
|
||||
/* me-accept-custom: "Control+MouseDPrimary";*/
|
||||
timeout {
|
||||
action: "kb-cancel";
|
||||
delay: 0;
|
||||
}
|
||||
filebrowser {
|
||||
directories-first: true;
|
||||
sorting-method: "name";
|
||||
}
|
||||
}
|
||||
@theme "/etc/xdg/rofi/launcher.rasi"
|
||||
@@ -0,0 +1,12 @@
|
||||
@import "launcher.rasi"
|
||||
window {
|
||||
width: 30%;
|
||||
height: 280px;
|
||||
margin: 0px;
|
||||
location: center;
|
||||
anchor: center;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
children: [inputbar,listview];
|
||||
}
|
||||
123
modules/optionnals/desktop/config/etc/xdg/rofi/launcher.rasi
Normal file
123
modules/optionnals/desktop/config/etc/xdg/rofi/launcher.rasi
Normal file
@@ -0,0 +1,123 @@
|
||||
/**
|
||||
* ROFI Color theme
|
||||
* User: Beastie
|
||||
* Copyright: GPLv3
|
||||
*/
|
||||
|
||||
@import "/etc/xdg/rofi/colors.rasi"
|
||||
|
||||
* {
|
||||
background-color: @transparent;
|
||||
text-color: @blue;
|
||||
margin: 5px;
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
font: "CaskaydiaCove Nerd Font Propo 12";
|
||||
}
|
||||
|
||||
window {
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
margin: 0px;
|
||||
location: center;
|
||||
anchor: center;
|
||||
border: 2px;
|
||||
border-color: @overlay0;
|
||||
background-color: rgba(48, 52, 70, 0.8);
|
||||
border-radius: 10px;
|
||||
//background-color: green;
|
||||
}
|
||||
|
||||
mainbox {
|
||||
spacing: 0px;
|
||||
border-radius: 10px;
|
||||
children: [inputbar,mode-switcher,listview];
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* Configure inputbar */
|
||||
inputbar {
|
||||
background-color: transparent;
|
||||
border: 1px;
|
||||
border-color: @surface1;
|
||||
border-radius: 10px;
|
||||
children: [icon-current-entry,prompt,textbox-prompt-colon,entry,num-filtered-rows,textbox-num-sep,num-rows];
|
||||
}
|
||||
|
||||
prompt, textbox-prompt-colon, entry, num-filtered-rows, textbox-num-sep, num-rows, icon-current-entry {
|
||||
text-color: @blue;
|
||||
vertical-align: 0.5;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
icon-current-entry {
|
||||
size: 1.5em;
|
||||
}
|
||||
|
||||
textbox-prompt-colon, textbox-num-sep {
|
||||
expand: false;
|
||||
str: " ";
|
||||
}
|
||||
|
||||
textbox-num-sep {
|
||||
str: "/";
|
||||
}
|
||||
|
||||
entry {
|
||||
placeholder: "Search";
|
||||
placeholder-color: transparent;
|
||||
}
|
||||
|
||||
/* Configure mode switcher */
|
||||
mode-switcher {
|
||||
background-color: transparent;
|
||||
border: 1px;
|
||||
border-color: @surface1;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: transparent;
|
||||
margin: 2px;
|
||||
text-color: @blue;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @blue;
|
||||
text-color: @base;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
/* Configure listview */
|
||||
listview {
|
||||
padding: 10px;
|
||||
background-color: transparent;
|
||||
border: 1px;
|
||||
border-color: @surface1;
|
||||
border-radius: 10px;
|
||||
columns: 2;
|
||||
}
|
||||
|
||||
element {
|
||||
background-color: transparent;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @blue;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
background-color: transparent;
|
||||
size: 1.5em;
|
||||
}
|
||||
|
||||
element-text {
|
||||
vertical-align: 0.5;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
element-text selected {
|
||||
text-color: @base;
|
||||
}
|
||||
26
modules/optionnals/desktop/config/etc/xdg/scripts/update.sh
Executable file
26
modules/optionnals/desktop/config/etc/xdg/scripts/update.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
cd ~/nixos-dotfiles || exit
|
||||
|
||||
# Obtenir le hash actuel
|
||||
current_hash=$(nix flake metadata --json 2>/dev/null | jq -r '.locks.nodes.nixpkgs.locked.rev')
|
||||
|
||||
# Obtenir le hash le plus récent
|
||||
latest_hash=$(nix flake metadata github:NixOS/nixpkgs/nixos-unstable --json | jq -r '.locked.rev')
|
||||
|
||||
# Date du commit local
|
||||
local_commit_date=$(nix flake metadata --json 2>/dev/null | jq -r '.locks.nodes.nixpkgs.locked.lastModified')
|
||||
local_commit_date=$(date -d "@${local_commit_date}" "+%d/%m/%Y à %H:%M")
|
||||
|
||||
if [ "$current_hash" != "$latest_hash" ]; then
|
||||
# Nombre de commits de retard
|
||||
maj_count=$(curl -s "https://api.github.com/repos/NixOS/nixpkgs/compare/${current_hash}...${latest_hash}" | jq -r '.ahead_by // 0' 2>/dev/null || echo "?")
|
||||
|
||||
# Date du commit distant
|
||||
remote_commit_date=$(curl -s https://api.github.com/repos/NixOS/nixpkgs/commits/c87b95e25065c028d31a94f06a62927d18763fdf | jq -r '.commit.author.date')
|
||||
remote_commit_date=$(date -d "${remote_commit_date}" "+%d/%m/%Y à %H:%M")
|
||||
printf '{"text": "%s ", "tooltip": "Commit distant : %s\\nCommit local : %s"}' "${maj_count}" "${remote_commit_date}" "${local_commit_date}"
|
||||
# Compter les commits entre les deux
|
||||
else
|
||||
printf '{"text": "0 ", "tooltip": "Date du dernier commit :\\n%s"}' "${local_commit_date}"
|
||||
fi
|
||||
26
modules/optionnals/desktop/config/etc/xdg/waybar/colors.css
Normal file
26
modules/optionnals/desktop/config/etc/xdg/waybar/colors.css
Normal file
@@ -0,0 +1,26 @@
|
||||
@define-color rosewater #f2d5cf;
|
||||
@define-color flamingo #eebebe;
|
||||
@define-color pink #f4b8e4;
|
||||
@define-color mauve #ca9ee6;
|
||||
@define-color red #e78284;
|
||||
@define-color maroon #ea999c;
|
||||
@define-color peach #ef9f76;
|
||||
@define-color yellow #e5c890;
|
||||
@define-color green #a6d189;
|
||||
@define-color teal #81c8be;
|
||||
@define-color sky #99d1db;
|
||||
@define-color sapphire #85c1dc;
|
||||
@define-color blue #8caaee;
|
||||
@define-color lavender #babbf1;
|
||||
@define-color text #c6d0f5;
|
||||
@define-color subtext1 #b5bfe2;
|
||||
@define-color subtext0 #a5adce;
|
||||
@define-color overlay2 #949cbb;
|
||||
@define-color overlay1 #838ba7;
|
||||
@define-color overlay0 #737994;
|
||||
@define-color surface2 #626880;
|
||||
@define-color surface1 #51576d;
|
||||
@define-color surface0 #414559;
|
||||
@define-color base #303446;
|
||||
@define-color mantle #292c3c;
|
||||
@define-color crust #232634;
|
||||
101
modules/optionnals/desktop/config/etc/xdg/waybar/config.jsonc
Normal file
101
modules/optionnals/desktop/config/etc/xdg/waybar/config.jsonc
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"position": "top",
|
||||
"reload_style_on_change": true,
|
||||
"modules-left": [
|
||||
"custom/logo",
|
||||
"cpu",
|
||||
"memory",
|
||||
"disk",
|
||||
"network",
|
||||
"pulseaudio",
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"custom/maj",
|
||||
"clock",
|
||||
"tray"
|
||||
],
|
||||
"custom/logo": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"default": " "
|
||||
}
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}% ",
|
||||
"tooltip": true
|
||||
},
|
||||
"memory": {
|
||||
"format": " {percentage}% ",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "asd: {used:0.2f} G / {total:0.2f} G"
|
||||
},
|
||||
"disk": {
|
||||
"interval": 300,
|
||||
"format": " {percentage_free}% ",
|
||||
"path": "/"
|
||||
},
|
||||
"network": {
|
||||
"format-wifi": "<span size='12000'> </span>{essid} ",
|
||||
"format-ethernet": " {ipaddr} ",
|
||||
"tooltip-format": " {bandwidthUpBytes} {bandwidthDownBytes}",
|
||||
"format-linked": " {ifname} (No IP) ",
|
||||
"format-disconnected": " Disconnected ",
|
||||
"format-alt": " {signalStrength}% ",
|
||||
"interval": 1
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": "{icon}{volume}% ",
|
||||
"format-muted": " 0% ",
|
||||
"format-icons": {
|
||||
"headphone": " ",
|
||||
"hands-free": " ",
|
||||
"headset": " ",
|
||||
"phone": " ",
|
||||
"portable": " ",
|
||||
"car": " ",
|
||||
"default": [
|
||||
" ",
|
||||
" ",
|
||||
" "
|
||||
]
|
||||
},
|
||||
"on-click-right": "pavucontrol -t 3",
|
||||
"on-click": "pactl -- set-sink-mute 0 toggle",
|
||||
"tooltip": false,
|
||||
"tooltip-format": "{volume}%",
|
||||
"scroll-step": 5.0,
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"disable-scroll": false,
|
||||
"all-outputs": false,
|
||||
"on-click": "activate",
|
||||
"persistent-workspaces": {
|
||||
"HDMI-A-1": [1, 2, 3, 4],
|
||||
"HDMI-A-2": [5, 6, 7, 8],
|
||||
},
|
||||
"format": "{name}",
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
},
|
||||
},
|
||||
"custom/maj": {
|
||||
"exec": "/etc/xdg/scripts/update.sh",
|
||||
"interval": 300,
|
||||
"return-type": "json",
|
||||
"format": "{icon}{text}",
|
||||
"format-icons": {
|
||||
"default": " "
|
||||
}
|
||||
},
|
||||
"clock": {
|
||||
"format": " {:%a %d %H:%M} ",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 18,
|
||||
"spacing": 6
|
||||
}
|
||||
}
|
||||
116
modules/optionnals/desktop/config/etc/xdg/waybar/style.css
Normal file
116
modules/optionnals/desktop/config/etc/xdg/waybar/style.css
Normal file
@@ -0,0 +1,116 @@
|
||||
@import "colors.css";
|
||||
|
||||
* {
|
||||
/*font-family: "Font Awesome 6 Free Solid", "Font Awesome 6 Free Regular", "Font Awesome 6 Brands Regular", "CaskaydiaCove Nerd Font Propo";*/
|
||||
font-family: "CaskaydiaCove Nerd Font Propo";
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
min-height: 0px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#waybar {
|
||||
color: @text;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background-color: rgba(48, 52, 70, 0);
|
||||
}
|
||||
|
||||
#custom-logo,
|
||||
#cpu,
|
||||
#memory,
|
||||
#disk,
|
||||
#network,
|
||||
#workspaces,
|
||||
#custom-maj,
|
||||
#pulseaudio,
|
||||
#memory,
|
||||
#clock,
|
||||
#tray {
|
||||
border-radius: 10px;
|
||||
background-color: rgba(48, 52, 70, 0.8);
|
||||
margin: 10px 10px 0px 10px;
|
||||
border: @overlay0 2px solid;
|
||||
}
|
||||
|
||||
#custom-settings {
|
||||
color: @pink;
|
||||
}
|
||||
|
||||
#custom-lockscreen {
|
||||
color: @green;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding: 0 5px;
|
||||
min-width: 152px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
background-color: @overlay0;
|
||||
margin: 5px 5px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover,
|
||||
#workspaces button.empty:hover,
|
||||
#workspaces button.active:hover,
|
||||
#workspaces button.visible:hover,
|
||||
#workspaces button.urgent:hover {
|
||||
background: @overlay2;
|
||||
border: 0px solid @red;
|
||||
}
|
||||
|
||||
#workspaces button label {
|
||||
color: @teal;
|
||||
opacity: 0;
|
||||
padding: 1px 6px 0px 6px;
|
||||
transition: padding 0.2s;
|
||||
}
|
||||
|
||||
#workspaces button.visible label {
|
||||
opacity: 1;
|
||||
padding: 1px 20px;
|
||||
transition: padding 0.2s;
|
||||
}
|
||||
|
||||
#workspaces button.empty {
|
||||
background: @surface0;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background: @overlay1;
|
||||
}
|
||||
|
||||
#workspaces button.visible {
|
||||
background: @overlay0;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background: @red;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: @pink;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: @yellow;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: @blue;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: @green;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: @red;
|
||||
}
|
||||
|
||||
#tray {
|
||||
padding: 0 8px 0 10px;
|
||||
}
|
||||
62
modules/optionnals/desktop/config/qwerty-fr
Normal file
62
modules/optionnals/desktop/config/qwerty-fr
Normal file
@@ -0,0 +1,62 @@
|
||||
partial alphanumeric_keys
|
||||
xkb_symbols "qwerty-fr"
|
||||
{
|
||||
include "us(basic)"
|
||||
include "level3(ralt_switch)"
|
||||
|
||||
name[Group1]= "US keyboard with french symbols - AltGr combination";
|
||||
|
||||
key <TLDE> { [ grave, asciitilde, dead_grave, dead_tilde ] };
|
||||
key <AE01> { [ 1, exclam, onesuperior, exclamdown ] };
|
||||
key <AE02> { [ 2, at, twosuperior, dead_doubleacute ] };
|
||||
key <AE03> { [ 3, numbersign, ecircumflex, Ecircumflex ] };
|
||||
key <AE04> { [ 4, dollar, EuroSign, dead_currency ] }; // FIXME: dead_currency has a different mapping than the one we want for qwerty-fr. Need to define a custom dead key instead. See Windows layout for dead key definition.
|
||||
key <AE05> { [ 5, percent, dead_macron, dead_abovedot ] };
|
||||
key <AE06> { [ 6, asciicircum, dead_circumflex, dead_caron ] };
|
||||
key <AE07> { [ 7, ampersand, ucircumflex, Ucircumflex ] };
|
||||
key <AE08> { [ 8, asterisk, icircumflex, Icircumflex ] };
|
||||
key <AE09> { [ 9, parenleft, ocircumflex, Ocircumflex ] };
|
||||
key <AE10> { [ 0, parenright, oslash, Oslash ] };
|
||||
key <AE11> { [ minus, underscore, endash, emdash ] };
|
||||
key <AE12> { [ equal, plus, notequal, approxeq ] };
|
||||
|
||||
key <AD01> { [ q, Q, acircumflex, Acircumflex ] };
|
||||
key <AD02> { [ w, W, eacute, Eacute ] };
|
||||
key <AD03> { [ e, E, egrave, Egrave ] };
|
||||
key <AD04> { [ r, R, registered, copyright ] };
|
||||
key <AD05> { [ t, T, thorn, THORN ] };
|
||||
key <AD06> { [ y, Y, dead_invertedbreve, dead_breve ] };
|
||||
key <AD07> { [ u, U, ugrave, Ugrave ] };
|
||||
key <AD08> { [ i, I, igrave, Igrave ] };
|
||||
key <AD09> { [ o, O, ograve, Ograve ] };
|
||||
key <AD10> { [ p, P, oe, OE ] };
|
||||
key <AD11> { [ bracketleft, braceleft, guillemotleft, leftdoublequotemark ] };
|
||||
key <AD12> { [ bracketright, braceright, guillemotright, rightdoublequotemark ] };
|
||||
|
||||
key <AC01> { [ a, A, agrave, Agrave ] };
|
||||
key <AC02> { [ s, S, ae, AE ] };
|
||||
key <AC03> { [ d, D, ediaeresis, Ediaeresis ] };
|
||||
key <AC04> { [ f, F, VoidSymbol, VoidSymbol ] };
|
||||
key <AC05> { [ g, G, dead_greek, VoidSymbol ] }; // FIXME: dead_greek has a different mapping than the one we want for qwerty-fr. Need to define a custom dead key instead. See Windows layout for dead key definition.
|
||||
key <AC06> { [ h, H, ydiaeresis, Ydiaeresis ] };
|
||||
key <AC07> { [ j, J, udiaeresis, Udiaeresis ] };
|
||||
key <AC08> { [ k, K, idiaeresis, Idiaeresis ] };
|
||||
key <AC09> { [ l, L, odiaeresis, Odiaeresis ] };
|
||||
key <AC10> { [ semicolon, colon, dead_acute, dead_abovering ] };
|
||||
key <AC11> { [ apostrophe, quotedbl, dead_grave, dead_diaeresis ] };
|
||||
key <BKSL> { [ backslash, bar, VoidSymbol, doublelowquotemark ] }; // „
|
||||
|
||||
key <LSGT> { [ less, greater, lessthanequal, greaterthanequal ] };
|
||||
key <AB01> { [ z, Z, adiaeresis, Adiaeresis ] };
|
||||
key <AB02> { [ x, X, multiply, division ] };
|
||||
key <AB03> { [ c, C, ccedilla, Ccedilla ] };
|
||||
key <AB04> { [ v, V, VoidSymbol, VoidSymbol ] };
|
||||
key <AB05> { [ b, B, ssharp, U1E9E ] }; // ß, ẞ (capital)
|
||||
key <AB06> { [ n, N, ntilde, Ntilde ] };
|
||||
key <AB07> { [ m, M, VoidSymbol, VoidSymbol ] };
|
||||
key <AB08> { [ comma, less, dead_cedilla, dead_ogonek ] };
|
||||
key <AB09> { [ period, greater, periodcentered, ellipsis ] }; // ., >, ·, …
|
||||
key <AB10> { [ slash, question, rightsinglequotemark, questiondown ] }; // /, ?, ’, ¿
|
||||
key <SPCE> { [ space, space, nobreakspace, 0x100202F ] }; // espace insécable fine
|
||||
|
||||
};
|
||||
13
modules/optionnals/desktop/dunst.nix
Normal file
13
modules/optionnals/desktop/dunst.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
dunst
|
||||
libnotify
|
||||
];
|
||||
environment.etc = {
|
||||
"xdg/dunst/dunstrc".source = ./config/etc/xdg/dunstrc;
|
||||
};
|
||||
}
|
||||
0
modules/optionnals/desktop/i3.nix
Normal file
0
modules/optionnals/desktop/i3.nix
Normal file
35
modules/optionnals/desktop/kitty.nix
Normal file
35
modules/optionnals/desktop/kitty.nix
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.kitty
|
||||
pkgs.nitch
|
||||
|
||||
];
|
||||
environment = {
|
||||
etc = {
|
||||
"xdg/kitty".source = ./config/etc/xdg/kitty;
|
||||
};
|
||||
variables = {
|
||||
VISUAL = "nvim";
|
||||
BROWSER = "firefox";
|
||||
};
|
||||
};
|
||||
programs = {
|
||||
starship.enable = true;
|
||||
bash = {
|
||||
promptInit = ''
|
||||
[[ "$TERM" == "xterm-kitty" ]] && export TERM="xterm"
|
||||
|
||||
[[ -f ${pkgs.nitch}/bin/nitch ]] && nitch
|
||||
|
||||
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||||
hyprland --config /etc/xdg/hypr/hyprland.conf
|
||||
fi
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
0
modules/optionnals/desktop/nvidia.nix
Normal file
0
modules/optionnals/desktop/nvidia.nix
Normal file
32
modules/optionnals/desktop/packages.nix
Normal file
32
modules/optionnals/desktop/packages.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.remmina
|
||||
pkgs.mpv
|
||||
pkgs.chromium
|
||||
pkgs.firefox
|
||||
pkgs.keepassxc
|
||||
pkgs.nwg-look
|
||||
pkgs.gimp
|
||||
pkgs.teams-for-linux
|
||||
pkgs.discord
|
||||
pkgs.lxappearance
|
||||
pkgs.libreoffice
|
||||
pkgs.xfe
|
||||
pkgs.catppuccin-gtk
|
||||
pkgs.imagemagick
|
||||
pkgs.gthumb
|
||||
pkgs.papirus-icon-theme
|
||||
pkgs.catppuccin-cursors
|
||||
pkgs.catppuccin-gtk
|
||||
];
|
||||
fonts.packages = [
|
||||
pkgs.nerd-fonts.dejavu-sans-mono
|
||||
pkgs.nerd-fonts.comic-shanns-mono
|
||||
pkgs.nerd-fonts.roboto-mono
|
||||
pkgs.nerd-fonts.caskaydia-cove
|
||||
];
|
||||
}
|
||||
0
modules/optionnals/desktop/picom.nix
Normal file
0
modules/optionnals/desktop/picom.nix
Normal file
15
modules/optionnals/desktop/qwerty-fr.nix
Normal file
15
modules/optionnals/desktop/qwerty-fr.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.xserver = {
|
||||
xkb = {
|
||||
layout = "qwerty-fr";
|
||||
extraLayouts.qwerty-fr = {
|
||||
description = "QWERTY avec symboles et diacritiques français ";
|
||||
languages = [ "eng" ];
|
||||
symbolsFile = ./config/qwerty-fr;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
83
modules/optionnals/desktop/rofi.nix
Normal file
83
modules/optionnals/desktop/rofi.nix
Normal file
@@ -0,0 +1,83 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment = {
|
||||
etc = {
|
||||
"xdg/rofi".source = ./config/etc/xdg/rofi;
|
||||
"xdg/scripts/wayland-disconnect.sh" = {
|
||||
text = ''
|
||||
#!/usr/bin/env bash
|
||||
|
||||
selected=$(printf "Lock\0icon\x1fsystem-lock-screen
|
||||
Update\0icon\x1fsystem-software-update
|
||||
Shutdown\0icon\x1fsystem-shutdown
|
||||
Reboot\0icon\x1fsystem-reboot
|
||||
Exit hyprland\0icon\x1fsystem-log-out
|
||||
Reload hyprland\0icon\x1fsystem-log-out" | ${pkgs.rofi-wayland}/bin/rofi -dmenu -show-icons -i -theme /etc/xdg/rofi/disconnect.rasi -p System)
|
||||
|
||||
echo "$selected"
|
||||
|
||||
case $selected in
|
||||
"Lock")
|
||||
${pkgs.hyprlock}/bin/hyprlock
|
||||
;;
|
||||
"Update")
|
||||
kitty /usr/local/share/dotfiles/scripts/update.sh
|
||||
;;
|
||||
"Shutdown")
|
||||
systemctl poweroff
|
||||
;;
|
||||
"Reboot")
|
||||
reboot
|
||||
;;
|
||||
"Exit hyprland")
|
||||
hyprctl dispatch exit
|
||||
;;
|
||||
"Reload hyprland")
|
||||
hyprctl reload
|
||||
;;
|
||||
esac
|
||||
'';
|
||||
mode = "0755";
|
||||
};
|
||||
"xdg/scripts/wayland-mpv.sh" = {
|
||||
text = ''
|
||||
#!/usr/bin/env bash
|
||||
|
||||
cd -- "$(dirname -- "$0")" || exit
|
||||
|
||||
## if not $1
|
||||
if [[ -z $1 ]]
|
||||
then
|
||||
_LINES=$(curl "http://10.0.0.1:2013" 2>/dev/null | sed -e "s|.*<a href=\"\([^\"]*\).*|$1\1|" -e "s/.*<.*\|.*C=D.*\|.*\/\/$\|.*.nfo//" -e "/^$/d")
|
||||
else
|
||||
_LINES="$(curl "http://10.0.0.1:2013/$1" 2>/dev/null | sed -e "s|.*<a href=\"\([^\"]*\).*|$1\1|" -e "s/.*<.*\|.*C=D.*\|.*\/\/$\|.*.nfo//" -e "/^$/d")"
|
||||
fi
|
||||
|
||||
_RESULT=$(${pkgs.rofi-wayland}/bin/rofi -dmenu -config /etc/xdg/rofi/config.rasi -i <<< "$_LINES")
|
||||
|
||||
# If no output
|
||||
echo "$_RESULT"
|
||||
if [[ -z $_RESULT ]]
|
||||
then
|
||||
echo "no output, exiting"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
#if line end vith /
|
||||
if [[ "$_RESULT" =~ .*/$ ]]
|
||||
then
|
||||
echo "output is a directory"
|
||||
./wayland-mpv.sh "$_RESULT"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
mpv "http://10.0.0.1:2013/$_RESULT"
|
||||
'';
|
||||
mode = "0755";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
39
modules/optionnals/desktop/wayland.nix
Normal file
39
modules/optionnals/desktop/wayland.nix
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
hostname,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.wl-clipboard
|
||||
pkgs.rofi-wayland
|
||||
pkgs.waybar
|
||||
pkgs.font-awesome
|
||||
pkgs.hyprlock
|
||||
pkgs.hyprpaper
|
||||
pkgs.hyprpicker
|
||||
# Screenshot testing
|
||||
pkgs.grim
|
||||
pkgs.slurp
|
||||
pkgs.swappy
|
||||
];
|
||||
environment = {
|
||||
etc = {
|
||||
"xdg/hypr/frappe.conf".source = ./config/etc/xdg/hypr/frappe.conf;
|
||||
"xdg/hypr/hyprland.conf".source = ./config/etc/xdg/hypr/hyprland.conf;
|
||||
"xdg/hypr/hyprland-host.conf".source = ./config/etc/xdg/hypr/hyperland-${hostname}.conf;
|
||||
"xdg/hypr/hyprlock.conf".source = ./config/etc/xdg/hypr/hyprlock.conf;
|
||||
"xdg/hypr/hyprpaper.conf".source = ./config/etc/xdg/hypr/hyprpaper.conf;
|
||||
"xdg/hypr/rofi.conf" = {
|
||||
text = ''
|
||||
$rofi = ${pkgs.rofi-wayland}/bin/rofi -show drun -show-icons -config /etc/xdg/rofi/config.rasi
|
||||
'';
|
||||
};
|
||||
"xdg/waybar".source = ./config/etc/xdg/waybar;
|
||||
"xdg/scripts/update.sh".source = ./config/etc/xdg/scripts/update.sh;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user