Compare commits

...

5 commits

Author SHA1 Message Date
GaspardCulis
7af492ac56 chore(Zephyrus): Added Accelerated Video Playback related config 2024-11-16 23:15:15 +01:00
GaspardCulis
25e3ce5a21 feat(Zephyrus): Enable localsend 2024-11-16 23:06:34 +01:00
GaspardCulis
e048bca882 chore: Replace ~/Images references to ~/Pictures 2024-11-15 13:21:37 +01:00
GaspardCulis
05f80c27a3 chore(helix): Increase lsp-ai context length 2024-11-15 10:25:27 +01:00
GaspardCulis
1797b88803 chore(Zephyrus): Added unzip system program 2024-11-14 16:57:29 +01:00
8 changed files with 21 additions and 10 deletions

View file

@ -1,5 +1,5 @@
(defvar WAIFU_MODE false) ; Bcz sometimes I listen to Geoxor, so, yeah... (defvar WAIFU_MODE false) ; Bcz sometimes I listen to Geoxor, so, yeah...
(defvar FALLBACK_COVER "/home/gaspard/Images/Icons/music-disk.png") (defvar FALLBACK_COVER "/home/gaspard/Pictures/Icons/music-disk.png")
(defvar PLAY_STATUS "⏸︎") (defvar PLAY_STATUS "⏸︎")
(deflisten music_info :initial '{"title": "", "artist": "", "artUrl": "", "status": ""}' "~/.config/eww/scripts/get-music-info") (deflisten music_info :initial '{"title": "", "artist": "", "artUrl": "", "status": ""}' "~/.config/eww/scripts/get-music-info")

View file

@ -38,9 +38,9 @@ start_timer() {
# Notify user # Notify user
if [ "$timer_type" = "pause" ]; then if [ "$timer_type" = "pause" ]; then
notify-send -c grind-timer -i ~/Images/Icons/moai.jpg "Work period over" "You can take a little nap now." notify-send -c grind-timer -i ~/Pictures/Icons/moai.jpg "Work period over" "You can take a little nap now."
elif [ "$timer_type" = "work" ]; then elif [ "$timer_type" = "work" ]; then
notify-send -c grind-timer -i ~/Images/Icons/moai.jpg "Pause period over" "Back to grinding we go." notify-send -c grind-timer -i ~/Pictures/Icons/moai.jpg "Pause period over" "Back to grinding we go."
fi fi
start_timer "$timer_type" start_timer "$timer_type"

View file

@ -10,7 +10,7 @@ export SWWW_TRANSITION=wipe
export SWWW_TRANSITION_ANGLE=$RANDOM export SWWW_TRANSITION_ANGLE=$RANDOM
export SWWW_TRANSITION_FPS=60 export SWWW_TRANSITION_FPS=60
wallpapers_dir=~/Images/Wallpapers/enabled wallpapers_dir=~/Pictures/Wallpapers/enabled
if [[ "$1" = "daemon" ]]; then if [[ "$1" = "daemon" ]]; then
exec swww-daemon exec swww-daemon

View file

@ -1,9 +1,9 @@
# Preload # Preload
preload = ~/Images/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png preload = ~/Pictures/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png
preload = ~/Images/Wallpapers/Overthinker - Inzo.png preload = ~/Pictures/Wallpapers/Overthinker - Inzo.png
# Definition # Definition
wallpaper = , ~/Images/Wallpapers/Overthinker - Inzo.png wallpaper = , ~/Pictures/Wallpapers/Overthinker - Inzo.png
# wallpaper = , ~/Images/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png # wallpaper = , ~/Pictures/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png
splash = false splash = false

View file

@ -6,6 +6,6 @@ exec --no-startup-id /usr/bin/wired
exec --no-startup-id artix-pipewire-launcher restart exec --no-startup-id artix-pipewire-launcher restart
exec --no-startup-id sleep 1 && feh --bg-fill "/home/gaspard/Images/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png" exec --no-startup-id sleep 1 && feh --bg-fill "/home/gaspard/Pictures/Wallpapers/ExylCollection/Desktop Flute Altar by Exyl.png"
exec udiskie exec udiskie

View file

@ -19,7 +19,7 @@ model = "codestral"
[language-server.lsp-ai.config.completion.parameters] [language-server.lsp-ai.config.completion.parameters]
max_tokens = 64 max_tokens = 64
max_context = 1024 max_context = 2048
################################# #################################

View file

@ -39,6 +39,7 @@
neofetch neofetch
bottom bottom
htop htop
unzip
wg-netmanager wg-netmanager
podman-compose podman-compose
mangohud mangohud
@ -62,6 +63,10 @@
# Other # Other
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.localsend = {
enable = true;
openFirewall = true;
};
# User config # User config
users.groups.gaspard = { users.groups.gaspard = {

View file

@ -74,14 +74,20 @@
"steamdeck-hw-theme" "steamdeck-hw-theme"
]; ];
nixpkgs.config.packageOverrides = pkgs: {
intel-vaapi-driver = pkgs.intel-vaapi-driver.override {enableHybridCodec = true;};
};
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
intel-media-driver
intel-vaapi-driver
vaapiVdpau vaapiVdpau
libvdpau-va-gl libvdpau-va-gl
mesa mesa
]; ];
}; };
hardware.nvidia = { hardware.nvidia = {
modesetting.enable = true; modesetting.enable = true;