├── .bashrc ├── .config ├── Kvantum │ ├── Granite │ │ ├── Granite.kvconfig │ │ └── Granite.svg │ ├── KvMojave# │ │ └── KvMojave#.kvconfig │ ├── Monochrome │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── Monochrome.kvconfig │ │ └── Monochrome.svg │ ├── MonochromeBlur │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── MonochromeBlur.kvconfig │ │ └── MonochromeBlur.svg │ ├── MonochromeSolid │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── MonochromeSolid.kvconfig │ │ └── MonochromeSolid.svg │ ├── NsCDE │ │ ├── NsCDE.kvconfig │ │ └── NsCDE.svg │ └── Suave │ │ ├── LICENSE │ │ ├── Suave.kvconfig │ │ └── Suave.svg ├── bat │ └── config ├── bottom │ └── bottom.toml ├── dolphinrc ├── dunst │ └── dunstrc ├── emacs │ ├── early-init.el │ └── init.el ├── fish │ ├── config.fish │ ├── fish_variables │ └── functions │ │ ├── dots.fish │ │ ├── lf.fish │ │ ├── lh.fish │ │ ├── nohup.fish │ │ ├── pacinstall.fish │ │ ├── pacremove.fish │ │ └── tree.fish ├── fontconfig │ ├── fonts.conf │ └── fonts.conf.bak ├── gallery-dl │ └── config.json ├── gtk-2.0 │ └── gtkrc ├── gtk-3.0 │ ├── assets │ │ ├── close-active.svg │ │ ├── close-backdrop-active.svg │ │ ├── close-backdrop-hover.svg │ │ ├── close-backdrop-normal.svg │ │ ├── close-hover.svg │ │ ├── close-normal.svg │ │ ├── maximize-active.svg │ │ ├── maximize-backdrop-active.svg │ │ ├── maximize-backdrop-hover.svg │ │ ├── maximize-backdrop-normal.svg │ │ ├── maximize-hover.svg │ │ ├── maximize-normal.svg │ │ ├── maximized-active.svg │ │ ├── maximized-backdrop-active.svg │ │ ├── maximized-backdrop-hover.svg │ │ ├── maximized-backdrop-normal.svg │ │ ├── maximized-hover.svg │ │ ├── maximized-normal.svg │ │ ├── minimize-active.svg │ │ ├── minimize-backdrop-active.svg │ │ ├── minimize-backdrop-hover.svg │ │ ├── minimize-backdrop-normal.svg │ │ ├── minimize-hover.svg │ │ └── minimize-normal.svg │ ├── bookmarks │ ├── colors.css │ ├── colors.css.bak │ ├── gtk.css │ ├── settings.ini │ └── window_decorations.css ├── gtk-4.0 │ ├── assets │ │ ├── close-active.svg │ │ ├── close-backdrop-active.svg │ │ ├── close-backdrop-hover.svg │ │ ├── close-backdrop-normal.svg │ │ ├── close-hover.svg │ │ ├── close-normal.svg │ │ ├── maximize-active.svg │ │ ├── maximize-backdrop-active.svg │ │ ├── maximize-backdrop-hover.svg │ │ ├── maximize-backdrop-normal.svg │ │ ├── maximize-hover.svg │ │ ├── maximize-normal.svg │ │ ├── maximized-active.svg │ │ ├── maximized-backdrop-active.svg │ │ ├── maximized-backdrop-hover.svg │ │ ├── maximized-backdrop-normal.svg │ │ ├── maximized-hover.svg │ │ ├── maximized-normal.svg │ │ ├── minimize-active.svg │ │ ├── minimize-backdrop-active.svg │ │ ├── minimize-backdrop-hover.svg │ │ ├── minimize-backdrop-normal.svg │ │ ├── minimize-hover.svg │ │ └── minimize-normal.svg │ ├── colors.css │ ├── colors.css.bak │ ├── gtk.css │ ├── settings.ini │ └── window_decorations.css ├── gtklock │ ├── config.ini │ └── style.css ├── kdedefaults │ ├── kdeglobals │ └── plasmarc ├── konsolerc ├── matugen │ ├── config.toml │ └── templates │ │ ├── gtk-colors.css │ │ ├── konsole.colorscheme │ │ ├── qtct-colors.conf │ │ ├── sway.conf │ │ └── waybar.css ├── mimeapps.list ├── mpd │ └── mpd.conf ├── mpv │ ├── fonts │ │ ├── Material-Design-Iconic-Font.ttf │ │ ├── uosc_icons.otf │ │ └── uosc_textures.ttf │ ├── input.conf │ ├── mpv.conf │ ├── script-opts │ │ ├── thumbfast.conf │ │ └── uosc.conf │ └── scripts │ │ ├── mpris.so │ │ ├── recentmenu.lua │ │ ├── thumbfast.lua │ │ └── uosc │ │ ├── bin │ │ ├── ziggy-darwin │ │ ├── ziggy-linux │ │ └── ziggy-windows.exe │ │ ├── char-conv │ │ └── zh.json │ │ ├── elements │ │ ├── BufferingIndicator.lua │ │ ├── Button.lua │ │ ├── Controls.lua │ │ ├── Curtain.lua │ │ ├── CycleButton.lua │ │ ├── Element.lua │ │ ├── Elements.lua │ │ ├── Menu.lua │ │ ├── PauseIndicator.lua │ │ ├── Speed.lua │ │ ├── Timeline.lua │ │ ├── TopBar.lua │ │ ├── Updater.lua │ │ ├── Volume.lua │ │ └── WindowBorder.lua │ │ ├── intl │ │ ├── de.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── uk.json │ │ └── zh-hans.json │ │ ├── lib │ │ ├── ass.lua │ │ ├── char_conv.lua │ │ ├── cursor.lua │ │ ├── intl.lua │ │ ├── menus.lua │ │ ├── std.lua │ │ ├── text.lua │ │ └── utils.lua │ │ └── main.lua ├── ncmpcpp │ ├── config │ └── lyrics │ │ ├── End Like This (Arknights Soundtrack).txt │ │ ├── FripSide - Decade.txt │ │ ├── Gunjou.txt │ │ ├── Ikanaide-Kaai Yuki.txt │ │ └── PinocchioP - Love for Love by Love of Love.txt ├── picom │ ├── old.conf │ └── picom.conf ├── qt5ct │ ├── colors │ │ └── matugen.conf │ └── qt5ct.conf ├── qt6ct │ ├── colors │ │ └── matugen.conf │ └── qt6ct.conf ├── rofi │ ├── banners │ │ ├── dishwasher1910.png │ │ └── emilia.png │ ├── config.rasi │ └── configs │ │ ├── dishwasher1910.rasi │ │ ├── emilia-dark.rasi │ │ └── emilia.rasi ├── sway │ ├── colors │ │ ├── artoria.conf │ │ ├── ei.conf │ │ └── matugen.conf │ └── config ├── user-dirs.dirs ├── waybar │ ├── config │ ├── matugen.css │ └── style.css └── yazi │ └── theme.toml ├── .github ├── README.md └── images │ ├── cinnamonroll.png │ └── moon.png ├── .gitignore ├── .local └── share │ ├── kio │ └── servicemenus │ │ └── wallpaper.desktop │ └── konsole │ ├── AdwaitaEmacs.colorscheme │ ├── Amy-Light-Konsole.colorscheme │ ├── Aritim Light.colorscheme │ ├── Breeze Light.colorscheme │ ├── Edge Light.colorscheme │ ├── Edna-Light.colorscheme │ ├── Lenny.colorscheme │ ├── Lenny_mine.colorscheme │ ├── Materia.colorscheme │ ├── Modus-Operandi.colorscheme │ ├── Moe.colorscheme │ ├── Monochrome.colorscheme │ ├── NevePlasmaLight.colorscheme │ ├── Noir-Light-Konsole.colorscheme │ ├── One Half Light.colorscheme │ ├── Peace-Harmony-Light-Konsole.colorscheme │ ├── ProfLight.colorscheme │ ├── Relax-Light-Konsole.colorscheme │ ├── Toys-Light.colorscheme │ ├── Uterly-Nord-Light-Solid-Konsole.colorscheme │ ├── Utterly-Nord-Light-Konsole.colorscheme │ ├── Wings-Light-Konsole.colorscheme │ ├── bookmarks.xml │ ├── bookmarks.xml.tbcache │ ├── cloud.colorscheme │ ├── github-light.colorscheme │ ├── iceberg-mine.colorscheme │ ├── iceberg.colorscheme │ ├── lily.colorscheme │ ├── matugen.colorscheme │ ├── mine.colorscheme │ ├── pansy.profile │ └── rose-pine-dawn.colorscheme └── bin ├── auto-wm.sh ├── autostart.sh ├── cpm ├── lock.sh ├── rofi-powermenu.sh ├── rofi-screenshot.sh ├── screenshot.sh └── wallpaper.sh /.config/Kvantum/Monochrome/AUTHORS: -------------------------------------------------------------------------------- 1 | ------------------------------- Monochrome KDE -------------------------------- 2 | 3 | Sources by: 4 | Alexey Varfolomeev - https://github.com/PapirusDevelopmentTeam/materia-kde 5 | 6 | Modified by: 7 | Patrik Wyde - https://gitlab.com/pwyde/monochrome-kde -------------------------------------------------------------------------------- /.config/Kvantum/MonochromeBlur/AUTHORS: -------------------------------------------------------------------------------- 1 | ------------------------------- Monochrome KDE -------------------------------- 2 | 3 | Sources by: 4 | Alexey Varfolomeev - https://github.com/PapirusDevelopmentTeam/materia-kde 5 | 6 | Modified by: 7 | Patrik Wyde - https://gitlab.com/pwyde/monochrome-kde -------------------------------------------------------------------------------- /.config/Kvantum/MonochromeSolid/AUTHORS: -------------------------------------------------------------------------------- 1 | ------------------------------- Monochrome KDE -------------------------------- 2 | 3 | Sources by: 4 | Alexey Varfolomeev - https://github.com/PapirusDevelopmentTeam/materia-kde 5 | 6 | Modified by: 7 | Patrik Wyde - https://gitlab.com/pwyde/monochrome-kde -------------------------------------------------------------------------------- /.config/bat/config: -------------------------------------------------------------------------------- 1 | --theme="Coldark-Cold" 2 | -------------------------------------------------------------------------------- /.config/dolphinrc: -------------------------------------------------------------------------------- 1 | MenuBar=Disabled 2 | 3 | [ContextMenu] 4 | ShowAddToPlaces=false 5 | 6 | [General] 7 | BrowseThroughArchives=true 8 | CloseActiveSplitView=false 9 | GlobalViewProps=false 10 | OpenExternallyCalledFolderInNewTab=true 11 | ShowSpaceInfo=false 12 | Version=202 13 | ViewPropsTimestamp=2024,10,26,18,47,40.436 14 | 15 | [IconsMode] 16 | IconSize=64 17 | PreviewSize=80 18 | 19 | [KFileDialog Settings] 20 | Places Icons Auto-resize=false 21 | Places Icons Static Size=22 22 | 23 | [MainWindow] 24 | MenuBar=Disabled 25 | ToolBarsMovable=Disabled 26 | 27 | [PreviewSettings] 28 | Plugins=ffmpegthumbnailer,appimagethumbnail,audiothumbnail,comicbookthumbnail,cursorthumbnail,djvuthumbnail,ebookthumbnail,exrthumbnail,directorythumbnail,imagethumbnail,jpegthumbnail,jxl,kraorathumbnail,windowsexethumbnail,windowsimagethumbnail,opendocumentthumbnail,gdk-pixbuf-thumbnailer,svgthumbnail,ffmpegthumbs,webp-pixbuf 29 | 30 | [ViewPropertiesDialog] 31 | 1366x768 screen: Height=484 32 | 1366x768 screen: Width=372 33 | -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- 1 | [global] 2 | origin = top-right 3 | offset = 24x24 4 | 5 | background = "#302e31" 6 | foreground = "#ffffff" 7 | highlight = "#1488ff" 8 | padding = 16 9 | 10 | frame_width = 0 11 | frame_color = "#25252540" 12 | 13 | progress_bar_height = 16 14 | progress_bar_frame_width = 0 15 | 16 | idle_threshold = 60 17 | 18 | # Text 19 | font = LINE Seed JP_TTF 10 20 | format = "%s\n%b" 21 | 22 | # Icons 23 | icon_position = left 24 | min_icon_size = 64 25 | max_icon_size = 64 26 | 27 | # History 28 | sticky_history = no 29 | history_length = 20 30 | 31 | # Mouse 32 | mouse_left_click = close_current 33 | mouse_middle_click = do_action, close_current 34 | mouse_right_click = close_all 35 | 36 | [shortcuts] 37 | close = ctrl+space 38 | close_all = ctrl+shift+space 39 | history = ctrl+grave 40 | context = ctrl+shift+o 41 | 42 | [urgency_low] 43 | foreground = "#999999" 44 | timeout = 5 45 | 46 | [urgency_normal] 47 | timeout = 5 48 | 49 | [urgency_critical] 50 | timeout = 30 51 | -------------------------------------------------------------------------------- /.config/emacs/early-init.el: -------------------------------------------------------------------------------- 1 | (setq package-enable-at-startup nil) 2 | -------------------------------------------------------------------------------- /.config/fish/config.fish: -------------------------------------------------------------------------------- 1 | if status is-interactive 2 | # Commands to run in interactive sessions can go here 3 | # source zoxide if it's installed 4 | zoxide init --cmd j fish | source 5 | # 6 | # arch specific 7 | abbr -a update 'sudo pacman -Syu' 8 | abbr -a install 'sudo pacman -S' 9 | abbr -a remove 'sudo pacman -Rns' 10 | abbr -a search 'pacman -Ss' 11 | abbr -a info 'pacman -Qi' 12 | 13 | # others 14 | abbr -a nrf 'fastfetch' 15 | abbr -a enable-keeb 'xinput enable "AT Translated Set 2 keyboard"' 16 | abbr -a disable-keeb 'xinput disable "AT Translated Set 2 keyboard"' 17 | 18 | abbr -a e '$EDITOR' 19 | abbr -a cat 'bat' 20 | end 21 | -------------------------------------------------------------------------------- /.config/fish/fish_variables: -------------------------------------------------------------------------------- 1 | # This file contains fish universal variable definitions. 2 | # VERSION: 3.0 3 | SETUVAR __fish_initialized:3400 4 | SETUVAR fish_color_autosuggestion:brblack 5 | SETUVAR fish_color_cancel:\x2dr 6 | SETUVAR fish_color_command:blue 7 | SETUVAR fish_color_comment:red 8 | SETUVAR fish_color_cwd:green 9 | SETUVAR fish_color_cwd_root:red 10 | SETUVAR fish_color_end:green 11 | SETUVAR fish_color_error:brred 12 | SETUVAR fish_color_escape:brcyan 13 | SETUVAR fish_color_history_current:\x2d\x2dbold 14 | SETUVAR fish_color_host:normal 15 | SETUVAR fish_color_host_remote:yellow 16 | SETUVAR fish_color_normal:normal 17 | SETUVAR fish_color_operator:brcyan 18 | SETUVAR fish_color_param:cyan 19 | SETUVAR fish_color_quote:yellow 20 | SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold 21 | SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack 22 | SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack 23 | SETUVAR fish_color_status:red 24 | SETUVAR fish_color_user:brgreen 25 | SETUVAR fish_color_valid_path:\x2d\x2dunderline 26 | SETUVAR fish_key_bindings:fish_default_key_bindings 27 | SETUVAR fish_pager_color_completion:normal 28 | SETUVAR fish_pager_color_description:yellow\x1e\x2di 29 | SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline 30 | SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan 31 | SETUVAR fish_pager_color_selected_background:\x2dr 32 | -------------------------------------------------------------------------------- /.config/fish/functions/dots.fish: -------------------------------------------------------------------------------- 1 | function dots 2 | git --git-dir=$HOME/.dots/ --work-tree=$HOME $argv 3 | end 4 | -------------------------------------------------------------------------------- /.config/fish/functions/lf.fish: -------------------------------------------------------------------------------- 1 | function lf 2 | set tmp (mktemp -t "yazi-cwd.XXXXXX") 3 | yazi $argv --cwd-file="$tmp" 4 | if set cwd (command cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ] 5 | builtin cd -- "$cwd" 6 | end 7 | rm -f -- "$tmp" 8 | end 9 | -------------------------------------------------------------------------------- /.config/fish/functions/lh.fish: -------------------------------------------------------------------------------- 1 | function lh --description 'alias lh ls --color=always -lah' 2 | ls --color=always -lh $argv 3 | 4 | end 5 | -------------------------------------------------------------------------------- /.config/fish/functions/nohup.fish: -------------------------------------------------------------------------------- 1 | function nohup 2 | command nohup $argv > ~/.cache/nohup.txt 3 | end 4 | -------------------------------------------------------------------------------- /.config/fish/functions/pacinstall.fish: -------------------------------------------------------------------------------- 1 | function pacinstall 2 | pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S 3 | end 4 | -------------------------------------------------------------------------------- /.config/fish/functions/pacremove.fish: -------------------------------------------------------------------------------- 1 | function pacremove 2 | pacman -Qq | fzf --multi --preview 'pacman -Qi {1}' | xargs -ro sudo pacman -Rns 3 | end 4 | -------------------------------------------------------------------------------- /.config/fish/functions/tree.fish: -------------------------------------------------------------------------------- 1 | function tree --description 'alias tree tree -a -I .git' 2 | command tree -a -I .git $argv 3 | end 4 | -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | roman 11 | 12 | 13 | 14 | roman 15 | 16 | 17 | 18 | 19 | matrix 20 | 21 | 1 22 | 0.2 23 | 0 24 | 1 25 | 26 | 27 | 28 | 29 | 30 | oblique 31 | 32 | 33 | 34 | false 35 | 36 | 37 | 40 | 41 | 42 | 43 | medium 44 | 45 | 46 | 47 | bold 48 | 49 | 53 | 54 | true 55 | 56 | 60 | 61 | bold 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf.bak: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | serif 6 | 7 | IBM Plex Serif 8 | Gentium Book Plus 9 | Sarasa Gothic J 10 | Zen Kurenaido 11 | Noto Sans CJK SC 12 | Noto Color Emoji 13 | DejaVu Serif 14 | Symbols Nerd Font 15 | 16 | 17 | 18 | sans-serif 19 | 20 | Roboto 21 | SF Pro Text 22 | Zen Kurenaido 23 | Noto Color Emoji 24 | DejaVu Sans 25 | Symbols Nerd Font 26 | 27 | 28 | 29 | monospace 30 | 31 | SF Mono 32 | Roboto Mono 33 | iA Writer Mono V 34 | IBM Plex Mono 35 | Victor Mono 36 | LXGW WenKai Mono 37 | Zen Kurenaido 38 | Noto Color Emoji 39 | DejaVu Sans Mono 40 | Symbols Nerd Font Mono 41 | 42 | 43 | 44 | 45 | 46 | zh 47 | 48 | 49 | Sarasa Gothic SC 50 | 51 | 52 | 53 | 54 | 55 | ja 56 | 57 | 58 | Sarasa Gothic J 59 | 60 | 61 | 62 | 63 | 64 | 65 | ko 66 | 67 | 68 | Sarasa Gothic K 69 | 70 | 71 | 79 | 80 | 81 | 82 | true 83 | 84 | 85 | true 86 | 87 | 88 | hintslight 89 | 90 | 91 | ~/.fonts 92 | 93 | 94 | rgb 95 | 96 | 97 | 98 | 99 | true 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /.config/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | gtk-theme-name="Materia-light-compact" 2 | gtk-icon-theme-name="Papirus-Light" 3 | gtk-font-name="SF Pro Display, 10" 4 | gtk-cursor-theme-name="miku-cursor" 5 | gtk-cursor-theme-size=24 6 | gtk-enable-animations=1 7 | gtk-primary-button-warps-slider=0 8 | gtk-toolbar-style=3 9 | gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 10 | gtk-button-images=1 11 | gtk-menu-images=1 12 | gtk-enable-event-sounds=1 13 | gtk-enable-input-feedback-sounds=1 14 | gtk-xft-antialias=1 15 | gtk-xft-hinting=1 16 | gtk-xft-hintstyle="hintslight" 17 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/close-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/maximized-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-3.0/assets/minimize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- 1 | file:///home/pansy/documents 2 | file:///home/pansy/downloads 3 | file:///home/pansy/music 4 | file:///home/pansy/pictures 5 | file:///home/pansy/videos 6 | -------------------------------------------------------------------------------- /.config/gtk-3.0/colors.css: -------------------------------------------------------------------------------- 1 | /* 2 | * GTK Colors 3 | * Generated with Matugen 4 | */ 5 | 6 | @define-color accent_color #c0c1ff; 7 | @define-color accent_fg_color #12144b; 8 | @define-color accent_bg_color #c0c1ff; 9 | @define-color window_bg_color #dcd9e0; 10 | @define-color window_fg_color #1b1b21; 11 | @define-color headerbar_bg_color #dcd9e0; 12 | @define-color headerbar_fg_color #1b1b21; 13 | @define-color popover_bg_color #dcd9e0; 14 | @define-color popover_fg_color #1b1b21; 15 | @define-color view_bg_color #fcf8ff; 16 | @define-color view_fg_color #1b1b21; 17 | @define-color card_bg_color #fcf8ff; 18 | @define-color card_fg_color #1b1b21; 19 | @define-color sidebar_bg_color @window_bg_color; 20 | @define-color sidebar_fg_color @window_fg_color; 21 | @define-color sidebar_border_color @window_bg_color; 22 | @define-color sidebar_backdrop_color @window_bg_color; 23 | 24 | -------------------------------------------------------------------------------- /.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | VteTerminal, 2 | TerminalScreen, 3 | vte-terminal { 4 | padding: 5px 15px; 5 | -VteTerminal-inner-border: 10px 10px 10px 10px; 6 | } 7 | @import 'colors.css'; -------------------------------------------------------------------------------- /.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-theme-name=Materia-light-compact 3 | gtk-icon-theme-name=Papirus-Light 4 | gtk-font-name=Cantarell 10 5 | gtk-cursor-theme-name=miku-cursor 6 | gtk-cursor-theme-size=24 7 | gtk-toolbar-style=3 8 | gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 9 | gtk-button-images=1 10 | gtk-menu-images=1 11 | gtk-enable-event-sounds=1 12 | gtk-enable-input-feedback-sounds=1 13 | gtk-xft-antialias=1 14 | gtk-xft-hinting=1 15 | gtk-xft-hintstyle=hintslight 16 | gtk-xft-rgba=rgb 17 | gtk-application-prefer-dark-theme=0 18 | gtk-decoration-layout=icon:minimize,maximize,close 19 | gtk-enable-animations=true 20 | gtk-modules=colorreload-gtk-module:window-decorations-gtk-module 21 | gtk-primary-button-warps-slider=true 22 | gtk-sound-theme-name=ocean 23 | gtk-xft-dpi=98304 24 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximized-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-backdrop-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-backdrop-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-backdrop-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize-normal.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | Qt SVG Document 5 | Generated with Qt 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/gtk-4.0/colors.css: -------------------------------------------------------------------------------- 1 | /* 2 | * GTK Colors 3 | * Generated with Matugen 4 | */ 5 | 6 | @define-color accent_color #c0c1ff; 7 | @define-color accent_fg_color #12144b; 8 | @define-color accent_bg_color #c0c1ff; 9 | @define-color window_bg_color #dcd9e0; 10 | @define-color window_fg_color #1b1b21; 11 | @define-color headerbar_bg_color #dcd9e0; 12 | @define-color headerbar_fg_color #1b1b21; 13 | @define-color popover_bg_color #dcd9e0; 14 | @define-color popover_fg_color #1b1b21; 15 | @define-color view_bg_color #fcf8ff; 16 | @define-color view_fg_color #1b1b21; 17 | @define-color card_bg_color #fcf8ff; 18 | @define-color card_fg_color #1b1b21; 19 | @define-color sidebar_bg_color @window_bg_color; 20 | @define-color sidebar_fg_color @window_fg_color; 21 | @define-color sidebar_border_color @window_bg_color; 22 | @define-color sidebar_backdrop_color @window_bg_color; 23 | 24 | -------------------------------------------------------------------------------- /.config/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import 'colors.css'; -------------------------------------------------------------------------------- /.config/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-application-prefer-dark-theme=false 3 | gtk-cursor-theme-name=breeze_cursors 4 | gtk-cursor-theme-size=24 5 | gtk-decoration-layout=icon:minimize,maximize,close 6 | gtk-enable-animations=true 7 | gtk-font-name=Noto Sans, 10 8 | gtk-icon-theme-name=breeze 9 | gtk-modules=colorreload-gtk-module:window-decorations-gtk-module 10 | gtk-primary-button-warps-slider=true 11 | gtk-sound-theme-name=ocean 12 | gtk-xft-dpi=98304 13 | -------------------------------------------------------------------------------- /.config/gtklock/config.ini: -------------------------------------------------------------------------------- 1 | [main] 2 | ; style=/home/pansy/.config/gtklock/style.css 3 | gtk-theme=Materia-dark 4 | -------------------------------------------------------------------------------- /.config/gtklock/style.css: -------------------------------------------------------------------------------- 1 | window { 2 | background-image: url("../../.cache/lockscreen"); 3 | background-size: cover; 4 | background-repeat: no-repeat; 5 | background-position: center; 6 | background-color: black; 7 | } 8 | 9 | #window-box { 10 | /* padding-left: 200px; */ 11 | } 12 | -------------------------------------------------------------------------------- /.config/kdedefaults/kdeglobals: -------------------------------------------------------------------------------- 1 | [General] 2 | ColorScheme=BreezeLight 3 | 4 | [Icons] 5 | Theme=breeze 6 | 7 | [KDE] 8 | widgetStyle=Breeze 9 | -------------------------------------------------------------------------------- /.config/kdedefaults/plasmarc: -------------------------------------------------------------------------------- 1 | [Theme] 2 | name=default 3 | -------------------------------------------------------------------------------- /.config/konsolerc: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | DefaultProfile=pansy.profile 3 | 4 | [General] 5 | ConfigVersion=1 6 | 7 | [UiSettings] 8 | ColorScheme= 9 | -------------------------------------------------------------------------------- /.config/matugen/config.toml: -------------------------------------------------------------------------------- 1 | [config] 2 | 3 | [templates.gtk3] 4 | input_path = '~/.config/matugen/templates/gtk-colors.css' 5 | output_path = '~/.config/gtk-3.0/colors.css' 6 | 7 | [templates.gtk4] 8 | input_path = '~/.config/matugen/templates/gtk-colors.css' 9 | output_path = '~/.config/gtk-4.0/colors.css' 10 | 11 | [templates.konsole] 12 | input_path = '~/.config/matugen/templates/konsole.colorscheme' 13 | output_path = '~/.local/share/konsole/matugen.colorscheme' 14 | 15 | [templates.qt5ct] 16 | input_path = '~/.config/matugen/templates/qtct-colors.conf' 17 | output_path = '~/.config/qt5ct/colors/matugen.conf' 18 | 19 | [templates.qt6ct] 20 | input_path = '~/.config/matugen/templates/qtct-colors.conf' 21 | output_path = '~/.config/qt6ct/colors/matugen.conf' 22 | 23 | [templates.sway] 24 | input_path = '~/.config/matugen/templates/sway.conf' 25 | output_path = '~/.config/sway/colors/matugen.conf' 26 | 27 | [templates.waybar] 28 | input_path = '~/.config/matugen/templates/waybar.css' 29 | output_path = '~/.config/waybar/matugen.css' 30 | -------------------------------------------------------------------------------- /.config/matugen/templates/gtk-colors.css: -------------------------------------------------------------------------------- 1 | /* 2 | * GTK Colors 3 | * Generated with Matugen 4 | */ 5 | 6 | @define-color accent_color {{colors.primary_fixed_dim.default.hex}}; 7 | @define-color accent_fg_color {{colors.on_primary_fixed.default.hex}}; 8 | @define-color accent_bg_color {{colors.primary_fixed_dim.default.hex}}; 9 | @define-color window_bg_color {{colors.surface_dim.default.hex}}; 10 | @define-color window_fg_color {{colors.on_surface.default.hex}}; 11 | @define-color headerbar_bg_color {{colors.surface_dim.default.hex}}; 12 | @define-color headerbar_fg_color {{colors.on_surface.default.hex}}; 13 | @define-color popover_bg_color {{colors.surface_dim.default.hex}}; 14 | @define-color popover_fg_color {{colors.on_surface.default.hex}}; 15 | @define-color view_bg_color {{colors.surface.default.hex}}; 16 | @define-color view_fg_color {{colors.on_surface.default.hex}}; 17 | @define-color card_bg_color {{colors.surface.default.hex}}; 18 | @define-color card_fg_color {{colors.on_surface.default.hex}}; 19 | @define-color sidebar_bg_color @window_bg_color; 20 | @define-color sidebar_fg_color @window_fg_color; 21 | @define-color sidebar_border_color @window_bg_color; 22 | @define-color sidebar_backdrop_color @window_bg_color; 23 | 24 | -------------------------------------------------------------------------------- /.config/matugen/templates/konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color={{colors.surface.default.red}},{{colors.surface.default.blue}},{{colors.surface.default.green}} 3 | 4 | [BackgroundFaint] 5 | Color=0,0,0 6 | 7 | [BackgroundIntense] 8 | Color=0,0,0 9 | 10 | [Color0] 11 | Color=24,24,24 12 | 13 | [Color0Faint] 14 | Color=34,40,39 15 | 16 | [Color0Intense] 17 | Color=88,91,112 18 | 19 | [Color1] 20 | Color={{colors.error.default.red}},{{colors.error.default.blue}},{{colors.error.default.green}} 21 | 22 | [Color1Faint] 23 | Color=213,168,227 24 | 25 | [Color1Intense] 26 | Color=243,139,168 27 | 28 | [Color2] 29 | Color={{colors.primary.default.red}},{{colors.primary.default.blue}},{{colors.primary.default.green}} 30 | 31 | [Color2Faint] 32 | Color=156,117,221 33 | 34 | [Color2Intense] 35 | Color=166,227,161 36 | 37 | [Color3] 38 | Color={{colors.inverse_primary.default.red}},{{colors.inverse_primary.default.blue}},{{colors.inverse_primary.default.green}} 39 | 40 | [Color3Faint] 41 | Color=152,152,174 42 | 43 | [Color3Intense] 44 | Color=249,226,175 45 | 46 | [Color4] 47 | Color={{colors.primary.default.red}},{{colors.primary.default.blue}},{{colors.primary.default.green}} 48 | 49 | [Color4Faint] 50 | Color=101,74,150 51 | 52 | [Color4Intense] 53 | Color=137,180,250 54 | 55 | [Color5] 56 | Color={{colors.tertiary.default.red}},{{colors.tertiary.default.blue}},{{colors.tertiary.default.green}} 57 | 58 | [Color5Faint] 59 | Color=98,85,102 60 | 61 | [Color5Intense] 62 | Color=245,194,231 63 | 64 | [Color6] 65 | Color={{colors.secondary.default.red}},{{colors.secondary.default.blue}},{{colors.secondary.default.green}} 66 | 67 | [Color6Faint] 68 | Color=169,209,223 69 | 70 | [Color6Intense] 71 | Color=148,226,213 72 | 73 | [Color7] 74 | Color=186,194,222 75 | 76 | [Color7Faint] 77 | Color=230,235,229 78 | 79 | [Color7Intense] 80 | Color=166,173,200 81 | 82 | [Foreground] 83 | Color={{colors.on_surface.default.red}},{{colors.on_surface.default.blue}},{{colors.on_surface.default.green}} 84 | 85 | [ForegroundFaint] 86 | Color=255,255,255 87 | 88 | [ForegroundIntense] 89 | Color=255,255,255 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=matugen 96 | FillStyle=Crop 97 | Opacity=1 98 | -------------------------------------------------------------------------------- /.config/matugen/templates/qtct-colors.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}} 3 | disabled_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}} 4 | inactive_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}} 5 | 6 | -------------------------------------------------------------------------------- /.config/matugen/templates/sway.conf: -------------------------------------------------------------------------------- 1 | # Sway Window colors 2 | # Generated with Matugen 3 | 4 | # Window: border, background, text, indicator, child_border 5 | 6 | #Windows #border #background #text #indicator #child_border 7 | client.focused {{colors.primary_container.default.hex}} {{colors.primary_container.default.hex}} {{colors.on_primary_container.default.hex}} {{colors.primary_container.default.hex}} {{colors.primary_container.default.hex}} 8 | client.unfocused {{colors.primary_container.default.hex}} {{colors.background.default.hex}} {{colors.on_background.default.hex}} {{colors.secondary_container.default.hex}} {{colors.secondary_fixed_dim.default.hex}} 9 | client.focused_inactive {{colors.primary_fixed_dim.default.hex}} {{colors.primary_fixed.default.hex}} {{colors.surface.default.hex}} 10 | client.placeholder {{colors.shadow.default.hex}} {{colors.scrim.default.hex}} {{colors.on_background.default.hex}} 11 | client.urgent {{colors.tertiary.default.hex}} {{colors.tertiary_container.default.hex}} {{colors.on_tertiary.default.hex}} 12 | # client.background {{colors.background.default.hex}} 13 | 14 | -------------------------------------------------------------------------------- /.config/matugen/templates/waybar.css: -------------------------------------------------------------------------------- 1 | @define-color bg {{colors.surface.default.hex}}; 2 | @define-color fg {{colors.on_surface.default.hex}}; 3 | @define-color urgent-bg {{colors.error_container.default.hex}}; 4 | @define-color urgent-fg {{colors.on_error_container.default.hex}}; 5 | @define-color highlight-bg {{colors.primary.default.hex}}; 6 | @define-color highlight-fg {{colors.on_primary.default.hex}}; 7 | 8 | -------------------------------------------------------------------------------- /.config/mpv/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /.config/mpv/fonts/uosc_icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/fonts/uosc_icons.otf -------------------------------------------------------------------------------- /.config/mpv/fonts/uosc_textures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/fonts/uosc_textures.ttf -------------------------------------------------------------------------------- /.config/mpv/input.conf: -------------------------------------------------------------------------------- 1 | # Jumping 2 | RIGHT seek 3 exact # seek 5 seconds forward 3 | LEFT seek -3 exact # seek 5 seconds backward 4 | 5 | Shift+LEFT seek -10 # seek 5 seconds backward 6 | Shift+Right seek 10 # seek 1 minute forward 7 | 8 | # jump through video 9 | Home seek 0 absolute-percent exact 10 | End seek 100 absolute-percent exact 11 | KP_INS seek 0 absolute-percent exact 12 | KP1 seek 10 absolute-percent exact 13 | KP2 seek 20 absolute-percent exact 14 | KP3 seek 30 absolute-percent exact 15 | KP4 seek 40 absolute-percent exact 16 | KP5 seek 50 absolute-percent exact 17 | KP6 seek 60 absolute-percent exact 18 | KP7 seek 70 absolute-percent exact 19 | KP8 seek 80 absolute-percent exact 20 | KP9 seek 90 absolute-percent exact 21 | # Volume controls 22 | UP add volume 5 23 | DOWN add volume -5 24 | m cycle mute # toggle mute 25 | a cycle audio # switch audio track 26 | 27 | # Pan controls 28 | Alt+left add video-pan-x 0.1 # move the video right 29 | Alt+right add video-pan-x -0.1 # move the video left 30 | Alt+up add video-pan-y 0.1 # move the video down 31 | Alt+down add video-pan-y -0.1 # move the video up 32 | 33 | # Zoom controls 34 | Alt+= add video-zoom 0.1 # zoom in 35 | Alt+- add video-zoom -0.1 # zoom out 36 | Alt+0 set video-zoom 0 ; set video-pan-x 0 ; set video-pan-y 0 # reset zoom and pan settings 37 | 38 | # Speed controls 39 | < multiply speed 1/1.1 # decrease the playback speed 40 | > multiply speed 1.1 # increase the playback speed 41 | ? set speed 1.0 # reset the speed to normal 42 | 43 | # Others 44 | #q quit-watch-later # exit and remember the playback position 45 | . frame-step # advance one frame and pause 46 | , frame-back-step # go back by one frame and pause 47 | 48 | # Subtitles controls 49 | c cycle sub-visibility # hide or show the subtitles 50 | + add sub-scale +0.1 # increase the subtitle font size 51 | _ add sub-scale -0.1 # decrease the subtitle font size 52 | = set sub-scale 1.0 # reset subtitle font size 53 | 54 | # Screenshot controls 55 | s ignore 56 | print screenshot # take a screenshot of the video in its original resolution with subtitles 57 | Shift+print screenshot video # take a screenshot of the video in its original resolution without subtitles 58 | 59 | # Recents 60 | Tab script-binding recentmenu/open 61 | 62 | # loop 63 | l cycle-values loop-file inf no 64 | Ctrl+l ab-loop 65 | L cycle-values loop-playlist inf no 66 | # l cycle-values loop-playlist yes no ; show-text "${?=loop-playlist==inf:Looping enabled}${?=loop-playlist==no:Looping disabled}" 67 | -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | # enable hardware acceleration 2 | hwdec=auto 3 | # loop the video forever 4 | # loop 5 | # loop-playlist=inf 6 | vo=gpu-next 7 | profile=fast 8 | 9 | # osc settings 10 | #osc=no 11 | osd-bar = no 12 | border = no 13 | keep-open=yes 14 | 15 | 16 | # osd settings 17 | osd-font="Sarasa Mono J" 18 | osd-font-size=35 19 | 20 | # Screenshot settings 21 | screenshot-format=png 22 | screenshot-png-compression=7 23 | screenshot-directory=~/pictures/others/screenshots 24 | 25 | geometry=600x400 26 | volume-max=100 27 | # others 28 | # profile=gpu-hq 29 | # video-sync=display-resample 30 | # interpolation 31 | # tscale=oversample 32 | # af=scaletempo2 33 | # deband=yes 34 | --no-keepaspect-window 35 | -------------------------------------------------------------------------------- /.config/mpv/script-opts/thumbfast.conf: -------------------------------------------------------------------------------- 1 | # Socket path (leave empty for auto) 2 | socket= 3 | 4 | # Thumbnail path (leave empty for auto) 5 | thumbnail= 6 | 7 | # Maximum thumbnail generation size in pixels (scaled down to fit) 8 | # Values are scaled when hidpi is enabled 9 | max_height=200 10 | max_width=200 11 | 12 | # Scale factor for thumbnail display size (requires mpv 0.38+) 13 | # Note that this is lower quality than increasing max_height and max_width 14 | scale_factor=1 15 | 16 | # Apply tone-mapping, no to disable 17 | tone_mapping=auto 18 | 19 | # Overlay id 20 | overlay_id=42 21 | 22 | # Spawn thumbnailer on file load for faster initial thumbnails 23 | spawn_first=no 24 | 25 | # Close thumbnailer process after an inactivity period in seconds, 0 to disable 26 | quit_after_inactivity=0 27 | 28 | # Enable on network playback 29 | network=no 30 | 31 | # Enable on audio playback 32 | audio=no 33 | 34 | # Enable hardware decoding 35 | hwdec=no 36 | 37 | # Windows only: use native Windows API to write to pipe (requires LuaJIT) 38 | direct_io=no 39 | 40 | # Custom path to the mpv executable 41 | mpv_path=mpv 42 | -------------------------------------------------------------------------------- /.config/mpv/scripts/mpris.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/scripts/mpris.so -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/bin/ziggy-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/scripts/uosc/bin/ziggy-darwin -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/bin/ziggy-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/scripts/uosc/bin/ziggy-linux -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/bin/ziggy-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/mpv/scripts/uosc/bin/ziggy-windows.exe -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/BufferingIndicator.lua: -------------------------------------------------------------------------------- 1 | local Element = require('elements/Element') 2 | 3 | ---@class BufferingIndicator : Element 4 | local BufferingIndicator = class(Element) 5 | 6 | function BufferingIndicator:new() return Class.new(self) --[[@as BufferingIndicator]] end 7 | function BufferingIndicator:init() 8 | Element.init(self, 'buffering_indicator', {ignores_curtain = true, render_order = 2}) 9 | self.enabled = false 10 | self:decide_enabled() 11 | end 12 | 13 | function BufferingIndicator:decide_enabled() 14 | local cache = state.cache_underrun or state.cache_buffering and state.cache_buffering < 100 15 | local player = state.core_idle and not state.eof_reached 16 | if self.enabled then 17 | if not player or (state.pause and not cache) then self.enabled = false end 18 | elseif player and cache and state.uncached_ranges then 19 | self.enabled = true 20 | end 21 | end 22 | 23 | function BufferingIndicator:on_prop_pause() self:decide_enabled() end 24 | function BufferingIndicator:on_prop_core_idle() self:decide_enabled() end 25 | function BufferingIndicator:on_prop_eof_reached() self:decide_enabled() end 26 | function BufferingIndicator:on_prop_uncached_ranges() self:decide_enabled() end 27 | function BufferingIndicator:on_prop_cache_buffering() self:decide_enabled() end 28 | function BufferingIndicator:on_prop_cache_underrun() self:decide_enabled() end 29 | 30 | function BufferingIndicator:render() 31 | local ass = assdraw.ass_new() 32 | ass:rect(0, 0, display.width, display.height, {color = bg, opacity = config.opacity.buffering_indicator}) 33 | local size = round(30 + math.min(display.width, display.height) / 10) 34 | local opacity = (Elements.menu and Elements.menu:is_alive()) and 0.3 or 0.8 35 | ass:spinner(display.width / 2, display.height / 2, size, {color = fg, opacity = opacity}) 36 | return ass 37 | end 38 | 39 | return BufferingIndicator 40 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/Button.lua: -------------------------------------------------------------------------------- 1 | local Element = require('elements/Element') 2 | 3 | ---@alias ButtonProps {icon: string; on_click: function; anchor_id?: string; active?: boolean; badge?: string|number; foreground?: string; background?: string; tooltip?: string} 4 | 5 | ---@class Button : Element 6 | local Button = class(Element) 7 | 8 | ---@param id string 9 | ---@param props ButtonProps 10 | function Button:new(id, props) return Class.new(self, id, props) --[[@as Button]] end 11 | ---@param id string 12 | ---@param props ButtonProps 13 | function Button:init(id, props) 14 | self.icon = props.icon 15 | self.active = props.active 16 | self.tooltip = props.tooltip 17 | self.badge = props.badge 18 | self.foreground = props.foreground or fg 19 | self.background = props.background or bg 20 | ---@type fun() 21 | self.on_click = props.on_click 22 | Element.init(self, id, props) 23 | end 24 | 25 | function Button:on_coordinates() self.font_size = round((self.by - self.ay) * 0.7) end 26 | function Button:handle_cursor_click() 27 | -- We delay the callback to next tick, otherwise we are risking race 28 | -- conditions as we are in the middle of event dispatching. 29 | -- For example, handler might add a menu to the end of the element stack, and that 30 | -- than picks up this click event we are in right now, and instantly closes itself. 31 | mp.add_timeout(0.01, self.on_click) 32 | end 33 | 34 | function Button:render() 35 | local visibility = self:get_visibility() 36 | if visibility <= 0 then return end 37 | cursor:zone('primary_click', self, function() self:handle_cursor_click() end) 38 | 39 | local ass = assdraw.ass_new() 40 | local is_hover = self.proximity_raw == 0 41 | local is_hover_or_active = is_hover or self.active 42 | local foreground = self.active and self.background or self.foreground 43 | local background = self.active and self.foreground or self.background 44 | 45 | -- Background 46 | if is_hover_or_active or config.opacity.controls > 0 then 47 | ass:rect(self.ax, self.ay, self.bx, self.by, { 48 | color = (self.active or not is_hover) and background or foreground, 49 | radius = state.radius, 50 | opacity = visibility * (self.active and 1 or (is_hover and 0.3 or config.opacity.controls)), 51 | }) 52 | end 53 | 54 | -- Tooltip on hover 55 | if is_hover and self.tooltip then ass:tooltip(self, self.tooltip) end 56 | 57 | -- Badge 58 | local icon_clip 59 | if self.badge then 60 | local badge_font_size = self.font_size * 0.6 61 | local badge_opts = {size = badge_font_size, color = background, opacity = visibility} 62 | local badge_width = text_width(self.badge, badge_opts) 63 | local width, height = math.ceil(badge_width + (badge_font_size / 7) * 2), math.ceil(badge_font_size * 0.93) 64 | local bx, by = self.bx - 1, self.by - 1 65 | ass:rect(bx - width, by - height, bx, by, { 66 | color = foreground, 67 | radius = state.radius, 68 | opacity = visibility, 69 | border = self.active and 0 or 1, 70 | border_color = background, 71 | }) 72 | ass:txt(bx - width / 2, by - height / 2, 5, self.badge, badge_opts) 73 | 74 | local clip_border = math.max(self.font_size / 20, 1) 75 | local clip_path = assdraw.ass_new() 76 | clip_path:round_rect_cw( 77 | math.floor((bx - width) - clip_border), math.floor((by - height) - clip_border), bx, by, 3 78 | ) 79 | icon_clip = '\\iclip(' .. clip_path.scale .. ', ' .. clip_path.text .. ')' 80 | end 81 | 82 | -- Icon 83 | local x, y = round(self.ax + (self.bx - self.ax) / 2), round(self.ay + (self.by - self.ay) / 2) 84 | ass:icon(x, y, self.font_size, self.icon, { 85 | color = foreground, 86 | border = self.active and 0 or options.text_border * state.scale, 87 | border_color = background, 88 | opacity = visibility, 89 | clip = icon_clip, 90 | }) 91 | 92 | return ass 93 | end 94 | 95 | return Button 96 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/Curtain.lua: -------------------------------------------------------------------------------- 1 | local Element = require('elements/Element') 2 | 3 | ---@class Curtain : Element 4 | local Curtain = class(Element) 5 | 6 | function Curtain:new() return Class.new(self) --[[@as Curtain]] end 7 | function Curtain:init() 8 | Element.init(self, 'curtain', {render_order = 999}) 9 | self.opacity = 0 10 | ---@type string[] 11 | self.dependents = {} 12 | end 13 | 14 | ---@param id string 15 | function Curtain:register(id) 16 | self.dependents[#self.dependents + 1] = id 17 | if #self.dependents == 1 then self:tween_property('opacity', self.opacity, 1) end 18 | end 19 | 20 | ---@param id string 21 | function Curtain:unregister(id) 22 | self.dependents = itable_filter(self.dependents, function(item) return item ~= id end) 23 | if #self.dependents == 0 then self:tween_property('opacity', self.opacity, 0) end 24 | end 25 | 26 | function Curtain:render() 27 | if self.opacity == 0 or config.opacity.curtain == 0 then return end 28 | local ass = assdraw.ass_new() 29 | ass:rect(0, 0, display.width, display.height, { 30 | color = config.color.curtain, opacity = config.opacity.curtain * self.opacity, 31 | }) 32 | return ass 33 | end 34 | 35 | return Curtain 36 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/CycleButton.lua: -------------------------------------------------------------------------------- 1 | local Button = require('elements/Button') 2 | 3 | ---@alias CycleState {value: any; icon: string; active?: boolean} 4 | ---@alias CycleButtonProps {prop: string; states: CycleState[]; anchor_id?: string; tooltip?: string} 5 | 6 | ---@class CycleButton : Button 7 | local CycleButton = class(Button) 8 | 9 | ---@param id string 10 | ---@param props CycleButtonProps 11 | function CycleButton:new(id, props) return Class.new(self, id, props) --[[@as CycleButton]] end 12 | ---@param id string 13 | ---@param props CycleButtonProps 14 | function CycleButton:init(id, props) 15 | local is_state_prop = itable_index_of({'shuffle'}, props.prop) 16 | self.prop = props.prop 17 | self.states = props.states 18 | 19 | Button.init(self, id, props) 20 | 21 | self.icon = self.states[1].icon 22 | self.active = self.states[1].active 23 | self.current_state_index = 1 24 | self.on_click = function() 25 | local new_state = self.states[self.current_state_index + 1] or self.states[1] 26 | local new_value = new_state.value 27 | if self.owner then 28 | mp.commandv('script-message-to', self.owner, 'set', self.prop, new_value) 29 | elseif is_state_prop then 30 | if itable_index_of({'yes', 'no'}, new_value) then new_value = new_value == 'yes' end 31 | set_state(self.prop, new_value) 32 | else 33 | mp.set_property(self.prop, new_value) 34 | end 35 | end 36 | 37 | local function handle_change(name, value) 38 | value = type(value) == 'boolean' and (value and 'yes' or 'no') or tostring(value or '') 39 | local index = itable_find(self.states, function(state) return state.value == value end) 40 | self.current_state_index = index or 1 41 | self.icon = self.states[self.current_state_index].icon 42 | self.active = self.states[self.current_state_index].active 43 | request_render() 44 | end 45 | 46 | local prop_parts = split(self.prop, '@') 47 | if #prop_parts == 2 then -- External prop with a script owner 48 | self.prop, self.owner = prop_parts[1], prop_parts[2] 49 | self['on_external_prop_' .. self.prop] = function(_, value) handle_change(self.prop, value) end 50 | handle_change(self.prop, external[self.prop]) 51 | elseif is_state_prop then -- uosc's state props 52 | self['on_prop_' .. self.prop] = function(self, value) handle_change(self.prop, value) end 53 | handle_change(self.prop, state[self.prop]) 54 | else 55 | self:observe_mp_property(self.prop, 'string', handle_change) 56 | end 57 | end 58 | 59 | return CycleButton 60 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/PauseIndicator.lua: -------------------------------------------------------------------------------- 1 | local Element = require('elements/Element') 2 | 3 | ---@class PauseIndicator : Element 4 | local PauseIndicator = class(Element) 5 | 6 | function PauseIndicator:new() return Class.new(self) --[[@as PauseIndicator]] end 7 | function PauseIndicator:init() 8 | Element.init(self, 'pause_indicator', {render_order = 3}) 9 | self.ignores_curtain = true 10 | self.paused = state.pause 11 | self.opacity = 0 12 | self.fadeout = false 13 | self:init_options() 14 | end 15 | 16 | function PauseIndicator:init_options() 17 | self.base_icon_opacity = options.pause_indicator == 'flash' and 1 or 0.8 18 | self.type = options.pause_indicator 19 | self:on_prop_pause() 20 | end 21 | 22 | function PauseIndicator:flash() 23 | -- Can't wait for pause property event listener to set this, because when this is used inside a binding like: 24 | -- cycle pause; script-binding uosc/flash-pause-indicator 25 | -- The pause event is not fired fast enough, and indicator starts rendering with old icon. 26 | self.paused = mp.get_property_native('pause') 27 | self.fadeout, self.opacity = false, 1 28 | self:tween_property('opacity', 1, 0, 300) 29 | end 30 | 31 | -- Decides whether static indicator should be visible or not. 32 | function PauseIndicator:decide() 33 | self.paused = mp.get_property_native('pause') -- see flash() for why this line is necessary 34 | self.fadeout, self.opacity = self.paused, self.paused and 1 or 0 35 | request_render() 36 | 37 | -- Workaround for an mpv race condition bug during pause on windows builds, which causes osd updates to be ignored. 38 | -- .03 was still loosing renders, .04 was fine, but to be safe I added 10ms more 39 | mp.add_timeout(.05, function() osd:update() end) 40 | end 41 | 42 | function PauseIndicator:on_prop_pause() 43 | if Elements:v('timeline', 'pressed') then return end 44 | if options.pause_indicator == 'flash' then 45 | if self.paused ~= state.pause then self:flash() end 46 | elseif options.pause_indicator == 'static' then 47 | self:decide() 48 | end 49 | end 50 | 51 | function PauseIndicator:on_options() 52 | self:init_options() 53 | if self.type == 'flash' then self.opacity = 0 end 54 | end 55 | 56 | function PauseIndicator:render() 57 | if self.opacity == 0 then return end 58 | 59 | local ass = assdraw.ass_new() 60 | 61 | -- Background fadeout 62 | if self.fadeout then 63 | ass:rect(0, 0, display.width, display.height, {color = bg, opacity = self.opacity * 0.3}) 64 | end 65 | 66 | -- Icon 67 | local size = round(math.min(display.width, display.height) * (self.fadeout and 0.20 or 0.15)) 68 | size = size + size * (1 - self.opacity) 69 | 70 | if self.paused then 71 | ass:icon(display.width / 2, display.height / 2, size, 'pause', 72 | {border = 1, opacity = self.base_icon_opacity * self.opacity} 73 | ) 74 | else 75 | ass:icon(display.width / 2, display.height / 2, size * 1.2, 'play_arrow', 76 | {border = 1, opacity = self.base_icon_opacity * self.opacity} 77 | ) 78 | end 79 | 80 | return ass 81 | end 82 | 83 | return PauseIndicator 84 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/elements/WindowBorder.lua: -------------------------------------------------------------------------------- 1 | local Element = require('elements/Element') 2 | 3 | ---@class WindowBorder : Element 4 | local WindowBorder = class(Element) 5 | 6 | function WindowBorder:new() return Class.new(self) --[[@as WindowBorder]] end 7 | function WindowBorder:init() 8 | Element.init(self, 'window_border', {render_order = 9999}) 9 | self.size = 0 10 | self:decide_enabled() 11 | end 12 | 13 | function WindowBorder:decide_enabled() 14 | self.enabled = options.window_border_size > 0 and not state.fullormaxed and not state.border 15 | self.size = self.enabled and round(options.window_border_size * state.scale) or 0 16 | end 17 | 18 | function WindowBorder:on_prop_border() self:decide_enabled() end 19 | function WindowBorder:on_prop_title_bar() self:decide_enabled() end 20 | function WindowBorder:on_prop_fullormaxed() self:decide_enabled() end 21 | function WindowBorder:on_options() self:decide_enabled() end 22 | 23 | function WindowBorder:render() 24 | if self.size > 0 then 25 | local ass = assdraw.ass_new() 26 | local clip = '\\iclip(' .. self.size .. ',' .. self.size .. ',' .. 27 | (display.width - self.size) .. ',' .. (display.height - self.size) .. ')' 28 | ass:rect(0, 0, display.width + 1, display.height + 1, { 29 | color = bg, clip = clip, opacity = config.opacity.border, 30 | }) 31 | return ass 32 | end 33 | end 34 | 35 | return WindowBorder 36 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "%s are empty": "%s sind leer", 3 | "%s channel": "%s Kanal", 4 | "%s channels": "%s Kanäle", 5 | "%s to search": "%s um zu suchen", 6 | "An error has occurred.": "Ein Fehler ist aufgetreten.", 7 | "Aspect ratio": "Seitenverhältnis", 8 | "Audio": "Audio", 9 | "Audio device": "Audiogerät", 10 | "Audio devices": "Audiogeräte", 11 | "Audio tracks": "Audiospuren", 12 | "Chapter %s": "Kapitel %s", 13 | "Chapters": "Kapitel", 14 | "Default": "Standard", 15 | "Default %s": "Standard %s", 16 | "Delete file & Next": "Lösche Datei & Nächstes", 17 | "Delete file & Prev": "Lösche Datei & Vorheriges", 18 | "Delete file & Quit": "Lösche Datei & Beenden", 19 | "Disabled": "Deaktiviert", 20 | "Download": "Herunterladen", 21 | "Drives": "Laufwerke", 22 | "Drop files or URLs to play here": "Dateien oder URLs zum Abspielen hier ablegen", 23 | "Edition %s": "Edition %s", 24 | "Editions": "Editionen", 25 | "Empty": "Leer", 26 | "First": "Erstes", 27 | "Fullscreen": "Vollbild", 28 | "Key bindings": "Tastenkürzel", 29 | "Last": "Letztes", 30 | "Load": "Hinzufügen", 31 | "Load audio": "Audio hinzufügen", 32 | "Load subtitles": "Untertitel hinzufügen", 33 | "Load video": "Video hinzufügen", 34 | "Loop file": "Datei wiederholen", 35 | "Loop playlist": "Wiedergabeliste wiederholen", 36 | "Menu": "Menü", 37 | "Navigation": "Navigation", 38 | "Next": "Nächstes", 39 | "Next page": "Nächste Seite", 40 | "No file": "Keine Datei", 41 | "Open config folder": "Konfigurationsordner öffnen", 42 | "Open file": "Datei öffnen", 43 | "Play/Pause": "Abspielen/Pause", 44 | "Playlist": "Wiedergabeliste", 45 | "Playlist/Files": "Wiedergabeliste/Dateien", 46 | "Prev": "Vorheriges", 47 | "Previous": "Vorheriges", 48 | "Previous page": "Vorherige Seite", 49 | "Quit": "Beenden", 50 | "Remaining downloads today: %s": "Verbleibende Downloads heute: %s", 51 | "Resets in: %s": "Zurückgesetzt in: %s", 52 | "Screenshot": "Bildschirmfoto", 53 | "See above for clues.": "Siehe oben für Hinweise.", 54 | "Show in directory": "Im Verzeichnis anzeigen", 55 | "Shuffle": "Zufällig", 56 | "Stream quality": "Streamqualität", 57 | "Subtitles": "Untertitel", 58 | "Subtitles loaded & enabled": "Untertitel geladen & aktiviert", 59 | "Track %s": "Spur %s", 60 | "Update uosc": "Aktualisiere uosc", 61 | "Updating uosc": "uosc wird aktualisiert", 62 | "Utils": "Werkzeuge", 63 | "Video": "Video", 64 | "default": "Standard", 65 | "drive": "Laufwerk", 66 | "enter query": "Anfrage eingeben", 67 | "error": "Fehler", 68 | "external": "extern", 69 | "forced": "erzwungen", 70 | "foreign parts only": "nur fremdsprachige Teile", 71 | "hearing impaired": "Gehörgeschädigte", 72 | "invalid response json (see console for details)": "Ungültige JSON-Antwort (siehe Konsole für Details)", 73 | "no results": "Keine Ergebnisse", 74 | "open file": "Datei öffnen", 75 | "parent dir": "übergeordnetes Verzeichnis", 76 | "playlist or file": "Wiedergabeliste oder Datei", 77 | "process exited with code %s (see console for details)": "Prozess endete mit dem Status %s (siehe Konsole für Details)", 78 | "search online": "Suche im Internet", 79 | "type & ctrl+enter to search": "Tippe & Strg+Eingabe um zu suchen", 80 | "type to search": "Tippe um zu suchen", 81 | "unknown error": "Unbekannter Fehler", 82 | "uosc has been installed. Restart mpv for it to take effect.": "uosc wurde installiert. mpv muss neu gestarted werden um es wirksam zu machen." 83 | } 84 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Aspect ratio": "Relación de aspecto", 3 | "Audio": "Audio", 4 | "Audio device": "Dispositivo de audio", 5 | "Audio devices": "Dispositivos de audio", 6 | "Audio tracks": "Pistas de audio", 7 | "Autoselect device": "Selección automática", 8 | "Chapter %s": "Capítulo %s", 9 | "Chapters": "Capítulos", 10 | "Default": "Por defecto", 11 | "Default %s": "Por defecto %s", 12 | "Delete file & Next": "Eliminar archivo y siguiente", 13 | "Delete file & Prev": "Eliminar archivo y anterior", 14 | "Delete file & Quit": "Eliminar archivo y salir", 15 | "Disabled": "Desactivado", 16 | "Drives": "Unidades", 17 | "Edition": "Edición", 18 | "Edition %s": "Edición %s", 19 | "Editions": "Ediciones", 20 | "Empty": "Vacío", 21 | "First": "Primero", 22 | "Fullscreen": "Pantalla completa", 23 | "Last": "Último", 24 | "Load": "Abrir", 25 | "Load audio": "Añadir una pista de audio", 26 | "Load subtitles": "Añadir una pista de subtítulos", 27 | "Load video": "Añadir una pista de vídeo", 28 | "Loop file": "Repetir archivo", 29 | "Loop playlist": "Repetir lista de reproducción", 30 | "Menu": "Menú", 31 | "Navigation": "Navegación", 32 | "Next": "Siguiente", 33 | "No file": "Ningún archivo", 34 | "Open config folder": "Abrir carpeta de configuración", 35 | "Open file": "Abrir un archivo", 36 | "Playlist": "Lista de reproducción", 37 | "Playlist/Files": "Lista de reproducción / Archivos", 38 | "Prev": "Anterior", 39 | "Previous": "Anterior", 40 | "Quit": "Salir", 41 | "Screenshot": "Captura de pantalla", 42 | "Show in directory": "Acceder a la carpeta", 43 | "Shuffle": "Reproducción aleatoria", 44 | "Stream quality": "Calidad del flujo", 45 | "Subtitles": "Subtítulos", 46 | "Track": "Pista", 47 | "Track %s": "Pista %s", 48 | "Utils": "Utilidades", 49 | "Video": "Vídeo", 50 | "%s channel": "%s canal", 51 | "%s channels": "%s canales", 52 | "default": "por defecto", 53 | "drive": "unidad", 54 | "external": "externo", 55 | "forced": "forzado", 56 | "open file": "seleccionar un archivo", 57 | "parent dir": "directorio padre", 58 | "playlist or file": "archivo o lista de reproducción" 59 | } 60 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Aspect ratio": "Format d'image", 3 | "Audio": "Audio", 4 | "Audio device": "Périphérique audio", 5 | "Audio devices": "Périphériques audio", 6 | "Audio tracks": "Pistes audio", 7 | "Autoselect device": "Sélection automatique", 8 | "Chapter %s": "Chapitre %s", 9 | "Chapters": "Chapitres", 10 | "Default": "Par défaut", 11 | "Default %s": "Par défaut %s", 12 | "Delete file & Next": "Supprimer le fichier et Suivant", 13 | "Delete file & Prev": "Supprimer le fichier et Précédent", 14 | "Delete file & Quit": "Supprimer le fichier et Quitter", 15 | "Disabled": "Désactivé", 16 | "Drives": "Lecteurs", 17 | "Edition": "Édition", 18 | "Edition %s": "Édition %s", 19 | "Editions": "Éditions", 20 | "Empty": "Vide", 21 | "First": "Premier", 22 | "Fullscreen": "Plein écran", 23 | "Last": "Dernier", 24 | "Load": "Ouvrir", 25 | "Load audio": "Ajouter une piste audio", 26 | "Load subtitles": "Ajouter une piste de sous-titres", 27 | "Load video": "Ajouter une piste vidéo", 28 | "Loop file": "Lire en boucle le fichier", 29 | "Loop playlist": "Lire en boucle la liste de lecture", 30 | "Menu": "Menu", 31 | "Navigation": "Navigation", 32 | "Next": "Suivant", 33 | "No file": "Aucun fichier", 34 | "Open config folder": "Ouvrir le dossier de configuration", 35 | "Open file": "Ouvrir un fichier", 36 | "Playlist": "Liste de lecture", 37 | "Playlist/Files": "Liste de lecture / Fichiers", 38 | "Prev": "Précédent", 39 | "Previous": "Précédent", 40 | "Quit": "Quitter", 41 | "Screenshot": "Capture d'écran", 42 | "Show in directory": "Accéder au dossier", 43 | "Shuffle": "Lecture aléatoire", 44 | "Stream quality": "Qualité du flux", 45 | "Subtitles": "Sous-titres", 46 | "Track": "Piste", 47 | "Track %s": "Piste %s", 48 | "Utils": "Outils", 49 | "Video": "Vidéo", 50 | "%s channel": "%s canal", 51 | "%s channels": "%s canaux", 52 | "default": "par défaut", 53 | "drive": "lecteur", 54 | "external": "externe", 55 | "forced": "forcé", 56 | "open file": "sélectionner un fichier", 57 | "parent dir": "répertoire parent", 58 | "playlist or file": "fichier ou liste de lecture" 59 | } 60 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "Aspect ratio": "Raportul de aspect", 3 | "Audio": "Audio", 4 | "Audio device": "Dispozitiv audio", 5 | "Audio devices": "Dispozitive audio", 6 | "Audio tracks": "Piese audio", 7 | "Autoselect device": "Selectare automată", 8 | "Chapter %s": "Capitolul %s", 9 | "Chapters": "Capitole", 10 | "Default": "Implicit", 11 | "Default %s": "Implicit %s", 12 | "Delete file & Next": "Ștergere fișier și următorul", 13 | "Delete file & Prev": "Ștergere fișier și anteriorul", 14 | "Delete file & Quit": "Ștergere fișier și ieși", 15 | "Disabled": "Dezactivat", 16 | "Drives": "Unități", 17 | "Edition": "Ediție", 18 | "Edition %s": "Ediție %s", 19 | "Editions": "Ediții", 20 | "Empty": "Gol", 21 | "First": "Primul", 22 | "Fullscreen": "Ecran complet", 23 | "Last": "Ultimul", 24 | "Load": "Încarcă", 25 | "Load audio": "Deschide audio", 26 | "Load subtitles": "Deschide subtitrările", 27 | "Load video": "Deschide video", 28 | "Loop file": "Repetă fișierul", 29 | "Loop playlist": "Repetă lista de redare", 30 | "Menu": "Meniu", 31 | "Navigation": "Navigare", 32 | "Next": "Următor", 33 | "No file": "Niciun fisier", 34 | "Open config folder": "Deschide dosarul de configurație", 35 | "Open file": "Deschide fișierul", 36 | "Playlist": "Listă de redare", 37 | "Playlist/Files": "Listă de redare/Fișiere", 38 | "Prev": "Precedent", 39 | "Previous": "Precedent", 40 | "Quit": "Ieșire", 41 | "Screenshot": "Captură de ecran", 42 | "Show in directory": "Arată în dosar", 43 | "Shuffle": "Amestecă", 44 | "Stream quality": "Calitatea fluxului", 45 | "Subtitles": "Subtitrări", 46 | "Track": "Pistă", 47 | "Track %s": "Pistă %s", 48 | "Utils": "Utilități", 49 | "Video": "Video", 50 | "%s channel": "%s canal", 51 | "%s channels": "%s canale", 52 | "default": "implicit", 53 | "drive": "unitate", 54 | "external": "extern", 55 | "forced": "forțat", 56 | "open file": "deschide fișierul", 57 | "parent dir": "director părinte", 58 | "playlist or file": "fișier sau listă de redare" 59 | } 60 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "Aspect ratio": "Соотношение сторон", 3 | "Audio": "Аудио", 4 | "Audio device": "Аудиоустройство", 5 | "Audio devices": "Аудиоустройства", 6 | "Audio tracks": "Аудиодорожки", 7 | "Autoselect device": "Автовыбор устройства", 8 | "Chapter %s": "Глава %s", 9 | "Chapters": "Главы", 10 | "Default": "По умолчанию", 11 | "Default %s": "По умолчанию %s", 12 | "Delete file & Next": "Удалить файл и след.", 13 | "Delete file & Prev": "Удалить файл и пред.", 14 | "Delete file & Quit": "Удалить файл и выйти", 15 | "Disabled": "Отключено", 16 | "Drives": "Диски", 17 | "Edition": "Редакция", 18 | "Edition %s": "Редакция %s", 19 | "Editions": "Редакции", 20 | "Empty": "Пусто", 21 | "First": "Первый", 22 | "Fullscreen": "Полный экран", 23 | "Last": "Последний", 24 | "Load": "Загрузить", 25 | "Load audio": "Загрузить аудио", 26 | "Load subtitles": "Загрузить субтитры", 27 | "Load video": "Загрузить видео", 28 | "Loop file": "Повторять файл", 29 | "Loop playlist": "Повторять плейлист", 30 | "Menu": "Меню", 31 | "Navigation": "Навигация", 32 | "Next": "Следующий", 33 | "No file": "Нет файла", 34 | "Open config folder": "Открыть папку конфигурации", 35 | "Open file": "Открыть файл", 36 | "Playlist": "Плейлист", 37 | "Playlist/Files": "Плейлист / файлы", 38 | "Prev": "Предыдущий", 39 | "Previous": "Предыдущий", 40 | "Quit": "Выйти", 41 | "Screenshot": "Скриншот", 42 | "Show in directory": "Показать в папке", 43 | "Shuffle": "Перемешать", 44 | "Stream quality": "Качество потока", 45 | "Subtitles": "Субтитры", 46 | "Track": "Дорожка", 47 | "Track %s": "Дорожка %s", 48 | "Utils": "Инструменты", 49 | "Video": "Видео", 50 | "%s channels": "%s канала/-ов", 51 | "%s channel": "%s канал", 52 | "default": "по умолчанию", 53 | "drive": "диск", 54 | "external": "внешняя", 55 | "forced": "форсированная", 56 | "open file": "открыть файл", 57 | "parent dir": "родительская папка", 58 | "playlist or file": "плейлист или файл" 59 | } 60 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "Aspect ratio": "Співвідношення сторін", 3 | "Audio": "Аудіо", 4 | "Audio device": "Аудіопристрій", 5 | "Audio devices": "Аудіопристрої", 6 | "Audio tracks": "Аудіодоріжки", 7 | "Autoselect device": "Автовибір пристрою", 8 | "Chapter %s": "Розділ %s", 9 | "Chapters": "Розділи", 10 | "Default": "За замовчуванням", 11 | "Default %s": "За замовчуванням %s", 12 | "Delete file & Next": "Видалити файл & Наступний", 13 | "Delete file & Prev": "Видалити файл & Попередній", 14 | "Delete file & Quit": "Видалити файл & Вийти", 15 | "Disabled": "Вимкнено", 16 | "Drives": "Диски", 17 | "Edition": "Видання", 18 | "Edition %s": "Видання %s", 19 | "Editions": "Видання", 20 | "Empty": "Порожньо", 21 | "First": "Перший", 22 | "Fullscreen": "На весь екран", 23 | "Last": "Останній", 24 | "Load": "Завантажити", 25 | "Load audio": "Завантажити аудіо", 26 | "Load subtitles": "Завантажити субтитри", 27 | "Load video": "Завантажити відео", 28 | "Loop file": "Повторювати файл", 29 | "Loop playlist": "Повторювати плейліст", 30 | "Menu": "Меню", 31 | "Navigation": "Навігація", 32 | "Next": "Наступний", 33 | "No file": "Файл відсутній", 34 | "Open config folder": "Відкрити каталог конфігурації", 35 | "Open file": "Відкрити файл", 36 | "Playlist": "Плейліст", 37 | "Playlist/Files": "Плейліст / Файли", 38 | "Prev": "Попередній", 39 | "Previous": "Попередній", 40 | "Quit": "Вийти", 41 | "Screenshot": "Скриншот", 42 | "Show in directory": "Показати в каталозі", 43 | "Shuffle": "Перемішати", 44 | "Stream quality": "Якість потоку", 45 | "Subtitles": "Субтитри", 46 | "Track": "Трек", 47 | "Track %s": "Трек %s", 48 | "Utils": "Інструменти", 49 | "Video": "Відео", 50 | "%s channels": "%s канали/-ів", 51 | "%s channel": "%s канал", 52 | "default": "за замовчуванням", 53 | "drive": "диск", 54 | "external": "зовнішня", 55 | "forced": "примусова", 56 | "open file": "відкрити файл", 57 | "parent dir": "батьківський каталог", 58 | "playlist or file": "плейліст або файл", 59 | "type to search": "Введіть для пошуку", 60 | "type & ctrl+enter to search": "Введіть & Ctrl+Enter для пошуку", 61 | "Key bindings": "Комбінації клавіш", 62 | "Drop files or URLs to play here": "Перемістіть файли або URL-адреси для відтворення сюди", 63 | "Update uosc": "Оновити uosc", 64 | "Updating uosc": "uosc оновлюється", 65 | "uosc has been installed. Restart mpv for it to take effect.": "uosc встановлено. mpv потрібно перезапустити.", 66 | "An error has occurred.": "Сталася помилка.", 67 | "See above for clues.": "Дивіться підказки вище.", 68 | "Play/Pause": "Відтворення / Пауза" 69 | } 70 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/intl/zh-hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "%s are empty": "%s 为空", 3 | "%s channel": "%s 声道", 4 | "%s channels": "%s 声道", 5 | "%s to search": "%s 进行搜索", 6 | "An error has occurred.": "出现错误", 7 | "Aspect ratio": "纵横比", 8 | "Audio": "音频", 9 | "Audio device": "音频设备", 10 | "Audio devices": "音频设备", 11 | "Audio tracks": "音频轨道", 12 | "Chapter %s": "第 %s 章", 13 | "Chapters": "章节", 14 | "Default": "默认", 15 | "Default %s": "默认 %s", 16 | "Delete file & Next": "删除文件并播放下一个", 17 | "Delete file & Prev": "删除文件并播放上一个", 18 | "Delete file & Quit": "删除文件并退出", 19 | "Disabled": "禁用", 20 | "Download": "下载", 21 | "Drives": "驱动器", 22 | "Drop files or URLs to play here": "拖放文件或 URLs 到此处进行播放", 23 | "Edition %s": "版本 %s", 24 | "Editions": "版本", 25 | "Empty": "空", 26 | "First": "第一个", 27 | "Fullscreen": "全屏", 28 | "Key bindings": "键位绑定", 29 | "Last": "最后一个", 30 | "Load": "加载", 31 | "Load audio": "加载音频", 32 | "Load subtitles": "加载字幕", 33 | "Load video": "加载视频", 34 | "Loop file": "单个循环", 35 | "Loop playlist": "列表循环", 36 | "Menu": "菜单", 37 | "Navigation": "导航", 38 | "Next": "下一个", 39 | "Next page": "下一页", 40 | "No file": "无文件", 41 | "Open config folder": "打开设置文件夹", 42 | "Open file": "打开文件", 43 | "Play/Pause": "播放/暂停", 44 | "Playlist": "播放列表", 45 | "Playlist/Files": "播放/文件列表", 46 | "Prev": "上一个", 47 | "Previous": "上一个", 48 | "Previous page": "上一页", 49 | "Quit": "退出", 50 | "Remaining downloads today: %s": "今天的剩余下载量: %s", 51 | "Resets in: %s": "重置: %s", 52 | "Screenshot": "截图", 53 | "See above for clues.": "线索见上文", 54 | "Show in directory": "打开所在文件夹", 55 | "Shuffle": "乱序", 56 | "Stream quality": "流媒体品质", 57 | "Subtitles": "字幕", 58 | "Subtitles loaded & enabled": "字幕已加载并启用", 59 | "Track %s": "轨道 %s", 60 | "Update uosc": "更新 uosc", 61 | "Updating uosc": "正在更新 uosc", 62 | "Utils": "工具", 63 | "Video": "视频", 64 | "default": "默认", 65 | "drive": "磁盘", 66 | "enter query": "输入查询", 67 | "error": "错误", 68 | "external": "外置", 69 | "forced": "强制", 70 | "foreign parts only": "仅限外语部分", 71 | "hearing impaired": "听力障碍", 72 | "invalid response json (see console for details)": "无效的响应 json (请参阅控制台了解详细信息)", 73 | "no results": "没有结果", 74 | "open file": "打开文件", 75 | "parent dir": "父文件夹", 76 | "playlist or file": "播放列表或文件", 77 | "process exited with code %s (see console for details)": "进程以代码 %s 退出 (请参阅控制台了解详细信息)", 78 | "search online": "在线搜索", 79 | "type & ctrl+enter to search": "输入并按 ctrl+enter 进行搜索", 80 | "type to search": "输入搜索内容", 81 | "unknown error": "未知错误", 82 | "uosc has been installed. Restart mpv for it to take effect.": "uosc 已经安装,重新启动 mpv 使其生效" 83 | } 84 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/lib/char_conv.lua: -------------------------------------------------------------------------------- 1 | require('lib/text') 2 | 3 | local char_dir = mp.get_script_directory() .. '/char-conv/' 4 | local data = {} 5 | 6 | local languages = get_languages() 7 | for i = #languages, 1, -1 do 8 | lang = languages[i] 9 | if (lang == 'en') then 10 | data = {} 11 | else 12 | table_assign(data, get_locale_from_json(char_dir .. lang:lower() .. '.json')) 13 | end 14 | end 15 | 16 | local romanization = {} 17 | 18 | local function get_romanization_table() 19 | for k, v in pairs(data) do 20 | for _, char in utf8_iter(v) do 21 | romanization[char] = k 22 | end 23 | end 24 | end 25 | get_romanization_table() 26 | 27 | function need_romanization() 28 | return next(romanization) ~= nil 29 | end 30 | 31 | function char_conv(chars, use_ligature, has_separator) 32 | local separator = has_separator or ' ' 33 | local length = 0 34 | local char_conv, sp, cache = {}, {}, {} 35 | local chars_length = utf8_length(chars) 36 | local concat = table.concat 37 | for _, char in utf8_iter(chars) do 38 | if use_ligature then 39 | if #char == 1 then 40 | char_conv[#char_conv + 1] = char 41 | else 42 | char_conv[#char_conv + 1] = romanization[char] or char 43 | end 44 | else 45 | length = length + 1 46 | if #char <= 2 then 47 | if (char ~= ' ' and length ~= chars_length) then 48 | cache[#cache + 1] = romanization[char] or char 49 | elseif (char == ' ' or length == chars_length) then 50 | if length == chars_length then 51 | cache[#cache + 1] = romanization[char] or char 52 | end 53 | sp[#sp + 1] = concat(cache) 54 | itable_clear(cache) 55 | end 56 | else 57 | if next(cache) ~= nil then 58 | sp[#sp + 1] = concat(cache) 59 | itable_clear(cache) 60 | end 61 | sp[#sp + 1] = romanization[char] or char 62 | end 63 | end 64 | end 65 | if use_ligature then 66 | return concat(char_conv) 67 | else 68 | return concat(sp, separator) 69 | end 70 | end 71 | 72 | return char_conv 73 | -------------------------------------------------------------------------------- /.config/mpv/scripts/uosc/lib/intl.lua: -------------------------------------------------------------------------------- 1 | local intl_dir = mp.get_script_directory() .. '/intl/' 2 | local locale = {} 3 | local cache = {} 4 | 5 | -- https://learn.microsoft.com/en-us/windows/apps/publish/publish-your-app/supported-languages?pivots=store-installer-msix#list-of-supported-languages 6 | function get_languages() 7 | local languages = {} 8 | 9 | for _, lang in ipairs(comma_split(options.languages)) do 10 | if (lang == 'slang') then 11 | local slang = mp.get_property_native('slang') 12 | if slang then 13 | itable_append(languages, slang) 14 | end 15 | else 16 | languages[#languages +1] = lang 17 | end 18 | end 19 | 20 | return languages 21 | end 22 | 23 | ---@param path string 24 | function get_locale_from_json(path) 25 | local expand_path = mp.command_native({'expand-path', path}) 26 | 27 | local meta, meta_error = utils.file_info(expand_path) 28 | if not meta or not meta.is_file then 29 | return nil 30 | end 31 | 32 | local json_file = io.open(expand_path, 'r') 33 | if not json_file then 34 | return nil 35 | end 36 | 37 | local json = json_file:read('*all') 38 | json_file:close() 39 | 40 | local json_table = utils.parse_json(json) 41 | return json_table 42 | end 43 | 44 | ---@param text string 45 | function t(text, a) 46 | if not text then return '' end 47 | local key = text 48 | if a then key = key .. '|' .. a end 49 | if cache[key] then return cache[key] end 50 | cache[key] = string.format(locale[text] or text, a or '') 51 | return cache[key] 52 | end 53 | 54 | -- Load locales 55 | local languages = get_languages() 56 | 57 | for i = #languages, 1, -1 do 58 | lang = languages[i] 59 | if (lang:match('.json$')) then 60 | table_assign(locale, get_locale_from_json(lang)) 61 | elseif (lang == 'en') then 62 | locale = {} 63 | else 64 | table_assign(locale, get_locale_from_json(intl_dir .. lang:lower() .. '.json')) 65 | end 66 | end 67 | 68 | return {t = t} 69 | -------------------------------------------------------------------------------- /.config/ncmpcpp/config: -------------------------------------------------------------------------------- 1 | # execute_on_song_change="~/.config/ncmpcpp/ncmpcpp-ueberzug/ncmpcpp_cover_art.sh" 2 | # Files 3 | mpd_music_dir = "~/music" 4 | lyrics_directory = ~/.local/share/lyrics 5 | ncmpcpp_directory = ~/.config/ncmpcpp 6 | mpd_host = "localhost" 7 | mpd_port = "6600" 8 | mpd_connection_timeout = "5" 9 | mpd_crossfade_time = "5" 10 | 11 | 12 | # Visualizer 13 | visualizer_data_source = "/tmp/mpd.fifo" 14 | visualizer_output_name = "my_fifo" 15 | visualizer_in_stereo = "yes" 16 | visualizer_type = "ellipse" 17 | visualizer_look = "●▮" 18 | # visualizer_look = "▌▌" 19 | # attempt #1 20 | user_interface = "alternative" 21 | song_list_format = "$6{ %a >>  %t}|{ 󰎇 %f}$9" 22 | now_playing_prefix = "$b$8$7 " 23 | current_item_prefix = "$b$7$/b$3 " 24 | # song_columns_list_format = "(30)[white]{a} >> (45)[blue]{t} (5)[white]{l}" 25 | # song_columns_list_format = "(25)[6]{a} (35)[4]{t} (5)[2]{l} 26 | # song_columns_list_format = "(50)[white]{ar} >> (40)[blue]{t} (10)[red]{l}" 27 | song_columns_list_format = "(50)[white]{ar} >> (50)[blue]{t}" 28 | song_library_format = "$6{ %t}|{ 󰎇 %f}$9" 29 | 30 | # ncmpcpp ueberzug tweaks 31 | # visualizer_look = " " 32 | startup_screen = visualizer 33 | startup_slave_screen = playlist 34 | startup_slave_screen_focus = yes 35 | locked_screen_width_part = 35 36 | -------------------------------------------------------------------------------- /.config/ncmpcpp/lyrics/End Like This (Arknights Soundtrack).txt: -------------------------------------------------------------------------------- 1 | I made a promise I swore I'd keep 2 | All that I wanted was to find 3 | Something to live for, something to stand for 4 | And if I die for what I believe 5 | Then this was worth it, and all the hurting 6 | Is only memory 7 | 8 | I'm up against the edge but I won't run away 9 | The sky is turning red but I still got my faith 10 | I feel it in my bones 11 | Yeah, I think I've always known 12 | It would end like this 13 | 14 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 15 | It would end like this 16 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 17 | It would end like this 18 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 19 | It would end like this 20 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 21 | It would end like this 22 | 23 | I won't say I'm sorry, you made your choice 24 | We're not so different, are we? 25 | I hear your voice inside me, yeah, you remind me 26 | To keep on fighting with all my heart 27 | Just like you told me, nothing can stop me 28 | From getting what I want 29 | 30 | I'm up against the edge but I won't run away 31 | The sky is turning red but I still got my faith 32 | I feel it in my bones 33 | Yeah, I think I've always known 34 | It would end like this 35 | 36 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 37 | It would end like this 38 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 39 | It would end like this 40 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 41 | It would end like this 42 | Oh-oh-oh, oh-oh-oh, oh-oh-oh 43 | It would end like this 44 | 45 | In my heart I knew it, we'd end up here 46 | Walking through the ruins, but there's no 47 | Tears on my face, I know it's too late 48 | To try and tempt fate, as if I could 49 | I'll never hold back, I know you know that 50 | You always understood -------------------------------------------------------------------------------- /.config/ncmpcpp/lyrics/FripSide - Decade.txt: -------------------------------------------------------------------------------- 1 | 果てしなく遠い道程を歩いた 2 | 初まりの夢 重ね合った誓い 3 | 受け継ぐ想い この胸に溢れているからいま届けよう 煌めきを 4 | 君に... 5 | 6 | We were born on this generation to be resonant 7 | From a decade, I wanna be with you for your love 8 | The melody which let you sound heartily 9 | Don′t forget! I'll be there with you forever 10 | 11 | 優しい風が吹き 運命を運ぶ 12 | 目を閉じ思い出す あの日紡いだ言葉 13 | 遠くから聴こえた 君のあの歌は 14 | 心から響かせた旋律 15 | 16 | 壊れそうな日々のなか 17 | 守るべきこの想いを 18 | 必ず 19 | 貫こうと信じ続けた 20 | だからいまここに歌う 21 | 22 | 感じ合った 瞬間から この時間は刻み始めた 23 | 走り続け見つけだした 君と僕だけのこの場所 24 | You and I must not lose in the changing time 25 | So we′ll reach for the next evolution 26 | 痛みさえもチカラにして 今日も奏で続ける 君とともに... 27 | 28 | We were born on this generation to be resonant 29 | From a decade, I wanna be with you for your love 30 | The melody which let you sound heartily 31 | Don't forget! I'll be there with you forever 32 | 33 | 駈け続けることの 大切な意味を 34 | 色褪せない様に 守り抜いてきたから 35 | 近くに聴こえてる 君のあの歌は 36 | 柔らかく囁いた旋律 37 | 38 | 変わりゆくその季節に 39 | 揺るぎないこの気持ちを 40 | 見つめた 41 | その未来が動き出すから 42 | 今日もこの場所で歌う 43 | 44 | Now we start from the decade 45 | This sound is a blade 46 | この鼓動強く感じて 47 | 走り続け導きたい まだ見えないその答えを 48 | 忘れないで 君と僕の約束が果たせるのなら 49 | 繋がりあう 温もりから 明日も歌が生まれてく 50 | 51 | 終わりのない夢を抱いて 光のなかに探してる 52 | 時間(とき)の止まらない永遠を 53 | 放て 心に刻んだ夢を 未来さえ置き去りにして 54 | 光散らす その先の遥かな想いを 55 | 56 | 感じ合った 瞬間から この時間は刻み始めた 57 | 走り続け見つけだした 君と僕だけのこの場所 58 | You and I must not lose in the changing time 59 | So we′ll reach for the next evolution 60 | 繋がりあう 温もりから 明日も歌が生まれてく 61 | 62 | Now we start from the decade 63 | This sound is a blade 64 | この鼓動強く感じて 65 | 走り続け導きたい まだ見えないその答えを 66 | 忘れないで 君と僕の約束が果たせるのなら 67 | 痛みさえもチカラにして 今日も奏で続ける 君とともに... 68 | 69 | We were born on this generation to be resonant 70 | From a decade, I wanna be with you for your love 71 | The melody which let you sound heartily 72 | Don′t forget! I'll be there with you forever 73 | 74 | We were born on this generation to be resonant 75 | From a decade, I wanna be with you for your love 76 | The melody which let you sound heartily 77 | Don′t forget! I'll be there with you forever -------------------------------------------------------------------------------- /.config/ncmpcpp/lyrics/Gunjou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/ncmpcpp/lyrics/Gunjou.txt -------------------------------------------------------------------------------- /.config/ncmpcpp/lyrics/Ikanaide-Kaai Yuki.txt: -------------------------------------------------------------------------------- 1 | CancelHow to Format Lyrics:Type out all lyrics, even if it’s a chorus that’s repeated throughout the songThe Section Header button breaks up song sections. Highlight the text then click the linkUse Bold and Italics only to distinguish between different singers in the same verse.E.g. “Verse 1: Kanye West, Jay-Z, Both”Capitalize each lineTo move an annotation to different lyrics in the song, use the [...] menu to switch to referent editing mode -------------------------------------------------------------------------------- /.config/ncmpcpp/lyrics/PinocchioP - Love for Love by Love of Love.txt: -------------------------------------------------------------------------------- 1 | Rotting a heart, they're eating alive 2 | The lily will struggle and try not to die 3 | Seeing you smile and hearing you speak 4 | Feeling a pulse again, now it could beat 5 | Walking together, you're taking me home 6 | Ice cream enjoying, I wasn't alone 7 | Hiding the feelings, a secret to keep 8 | Hiding it terribly 9 | 10 | I stumbled and fell into a love 11 | I stumbled and fell into a love 12 | Sparking and scattered from me 13 | Dancing upon the thinning ice ever melting 14 | I stumbled and fell into a love 15 | I stumbled and fell into a love 16 | The very same 17 | Feeling I always would shame 18 | It was a love in me 19 | 20 | Fleeting and oh so green 21 | Mistakes and everything 22 | 23 | Falling in love with love on that day 24 | Falling in love with love on that day 25 | Later then turning and killing the flame 26 | Killing the flame, killing the flame 27 | Too many memories staining it red 28 | Dripping in blood, a sun that'll set 29 | Shut in my room, alone I would stand 30 | Trying to end it but I can't 31 | Falling in love with love on that day 32 | What is the face a person should make? 33 | Driving insane 34 | Love for love 35 | And by the love 36 | And in the name of love 37 | That love...was selfish and just loved love 38 | 39 | Doubting the manual only to find 40 | They didn't plan for a future outside 41 | Only believing in what was a dream 42 | Happy and beautiful, waiting for me 43 | What they believed in, it all was a lie 44 | Even their values were different alike 45 | Laughing together, the sound that we made 46 | Drifted away 47 | 48 | So it was a young and dumb love 49 | So it was a young and dumb love 50 | Like a moth to a flame 51 | Dancing along every street lamp until day 52 | So it was a young and dumb love 53 | So it was a young and dumb love 54 | "It really hurt you, huh?" 55 | 56 | Falling in love with love, on that day 57 | Falling in love with love, on that day 58 | Later then seeing it passing away 59 | Passing away, Passing away 60 | Too many memories tied to the moon 61 | All of it hurting me, all of the wounds 62 | Thinking of all of the wonderful times 63 | It's hard to leave it all behind 64 | Falling in love with love on that day 65 | Telling a lie I'll never escape 66 | Filling with hate 67 | Love for love 68 | And by the love 69 | And in the name of love… 70 | That love...was rotten but it was love 71 | 72 | Fleeting and a green glass love 73 | 74 | Falling in love with love on that day 75 | Falling in love with love on that day 76 | Later then turning and killing the flame 77 | Killing the flame, Killing the flame 78 | Killing the flame, Killing the flame 79 | Killing the flame, Killing the flame 80 | Killing the flame... 81 | Killing it but still won't go away 82 | 83 | Falling in love with love on that day 84 | Falling in love with love on that day 85 | Later then turning and killing the flame 86 | Killing the flame, Killing the flame 87 | Too many memories staining it red 88 | Dripping in blood, a sun that'll set 89 | Shut in my room, alone I would stand 90 | Trying to end it, but I can't 91 | Falling in love with love, on that day 92 | What is the face, a person should make? 93 | Driving insane 94 | Love for love 95 | And by the love 96 | And in the name of love… 97 | That love… 98 | That love... 99 | Was a mistake that is made by everyone 100 | 101 | But I felt it 102 | And I know that it was love 103 | Even now I know it's love -------------------------------------------------------------------------------- /.config/picom/old.conf: -------------------------------------------------------------------------------- 1 | # Shadows 2 | shadow = true; 3 | shadow-radius = 12; 4 | shadow-opacity = 0.30; 5 | shadow-offset-x = -12; 6 | shadow-offset-y = -12; 7 | shadow-color = "#000000" 8 | shadow-exclude = [ 9 | "name = 'Notification'", 10 | "class_g = 'Conky'", 11 | "class_g ?= 'Notify-osd'", 12 | "class_g = 'Cairo-clock'", 13 | "_GTK_FRAME_EXTENTS@:c", # workaround for gtk3 shadows 14 | "_NET_WM_WINDOW_TYPE:a = '_NET_WM_WINDOW_TYPE_NOTIFICATION'", 15 | "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", 16 | "class_g = 'firefox' && argb", 17 | "class_g = 'firefox-esr' && argb", 18 | "class_g = 'org.gnome.Nautilus' && argb", 19 | "override_redirect = true", # workaround for gtk4 shadows 20 | "window_type = 'menu'", 21 | "class_g = 'xdg-desktop-portal-gnome' && window_type = 'menu'", 22 | # "_NET_FRAME_EXTENTS@:c", 23 | ]; 24 | shadow-ignore-shaped = false 25 | 26 | # Fading 27 | fading = true; 28 | fading-in-step = 0.08; 29 | fading-out-step = 0.2; 30 | fade-delta = 3 31 | fade-exclude = [] 32 | no-fading-openclose = false 33 | 34 | # Transparency 35 | inactive-opacity = 0.96; 36 | frame-opacity = 1.0; 37 | inactive-opacity-override = false; 38 | active-opacity = 1.0 39 | inactive-dim = 0.01 40 | focus-exclude = [ "class_g = 'Cairo-clock'",]; 41 | opacity-rule = [ 42 | # "90:class_g = 'URxvt'", 43 | "100:class_g = 'firefox'", 44 | "100:class_g = 'firefox-esr'", 45 | ]; 46 | 47 | # Rounded Corners 48 | #corner-radius = 5; 49 | round-borders = 10; 50 | rounded-corners-exclude = [ 51 | "window_type = 'dock'", 52 | "window_type = 'desktop'", 53 | "class_g = 'firefox'", 54 | "window_type = 'popup_menu'", 55 | "window_type = 'dropdown_menu'", 56 | "window_type = 'tooltip'", 57 | "class_g = 'awesome'", 58 | ]; 59 | 60 | # Blur 61 | blur: { 62 | background = true; 63 | background-frame = false; 64 | background-fixed = false; 65 | strength = 12; 66 | method = "dual_kawase"; 67 | } 68 | blur-background-exclude = [ 69 | # "window_type = 'dock'", #blurs docks like polybar and awesomewm wibar 70 | "window_type = 'desktop'", 71 | "_GTK_FRAME_EXTENTS@:c", 72 | # "_NET_WM_WINDOW_TYPE_MENU:" 73 | "class_g = 'slop'", 74 | "class_g= 'firefox-esr' && argb", 75 | "class_g = 'firefox' && argb", 76 | "class_g = 'firefox-nightly' && argb", 77 | "class_g = 'org.gnome.Nautilus' && argb", 78 | # "class_g = 'Xfce4-terminal'", 79 | # "window_type = 'popup_menu'", 80 | # "class_g = 'Alacritty'", 81 | ]; 82 | # Defaults 83 | backend = "glx" 84 | vsync = true; 85 | mark-wmwin-focused = true; 86 | mark-ovredir-focused = true; 87 | 88 | detect-rounded-corners = true; 89 | detect-client-opacity = true; 90 | detect-transient = true; 91 | 92 | use-ewmh-active-win = true 93 | glx-no-stencil = true; 94 | use-damage = true; 95 | log-level = "warn"; 96 | 97 | wintypes: 98 | { 99 | tooltip = { fade = true; shadow = true; opacity = 0.92; focus = true; full-shadow = false; }; 100 | dock = { shadow = false; clip-shadow-above = true; } 101 | dnd = { shadow = false; } 102 | popup_menu = { opacity = 1; shadow = false; full-shadow = false;} 103 | dropdown_menu = { opacity = 1; } 104 | }; 105 | -------------------------------------------------------------------------------- /.config/qt5ct/colors/matugen.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 3 | disabled_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 4 | inactive_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 5 | 6 | -------------------------------------------------------------------------------- /.config/qt5ct/qt5ct.conf: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | color_scheme_path=/home/pansy/.config/qt5ct/colors/matugen.conf 3 | custom_palette=true 4 | icon_theme=breeze 5 | standard_dialogs=default 6 | style=kvantum 7 | 8 | [Fonts] 9 | fixed="Cascadia Code,10,-1,5,29,0,0,0,0,0" 10 | general="Cantarell,10,-1,5,50,0,0,0,0,0" 11 | 12 | [Interface] 13 | activate_item_on_single_click=1 14 | buttonbox_layout=0 15 | cursor_flash_time=1000 16 | dialog_buttons_have_icons=1 17 | double_click_interval=400 18 | gui_effects=@Invalid() 19 | keyboard_scheme=2 20 | menus_have_icons=true 21 | show_shortcuts_in_context_menus=true 22 | stylesheets=@Invalid() 23 | toolbutton_style=4 24 | underline_shortcut=1 25 | wheel_scroll_lines=3 26 | 27 | [SettingsWindow] 28 | geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x5U\0\0\x2\xe7\0\0\0\0\0\0\0\0\0\0\x2\xde\0\0\x2\xb6\0\0\0\0\x2\0\0\0\x5V\0\0\0\0\0\0\0\0\0\0\x5U\0\0\x2\xe7) 29 | 30 | [Troubleshooting] 31 | force_raster_widgets=1 32 | ignored_applications=@Invalid() 33 | -------------------------------------------------------------------------------- /.config/qt6ct/colors/matugen.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 3 | disabled_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 4 | inactive_colors=#1b1b21, #fcf8ff, #ffffff, #cacaca, #9f9f9f, #b8b8b8, #1b1b21, #ffffff, #1b1b21, #fcf8ff, #fcf8ff, #000000, #e1e0ff, #12144b, #5d5d72, #575992, #fcf8ff, #000000, #fcf8ff, #1b1b21, #5d5d72 5 | 6 | -------------------------------------------------------------------------------- /.config/qt6ct/qt6ct.conf: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | color_scheme_path=/home/pansy/.config/qt6ct/colors/matugen.conf 3 | custom_palette=true 4 | icon_theme=breeze 5 | standard_dialogs=default 6 | style=kvantum 7 | 8 | [Fonts] 9 | fixed="Cascadia Code,10,-1,5,316,0,0,0,0,0,0,0,0,0,0,1,Regular" 10 | general="Cantarell,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1,Regular" 11 | 12 | [Interface] 13 | activate_item_on_single_click=1 14 | buttonbox_layout=0 15 | cursor_flash_time=1000 16 | dialog_buttons_have_icons=1 17 | double_click_interval=400 18 | gui_effects=@Invalid() 19 | keyboard_scheme=2 20 | menus_have_icons=true 21 | show_shortcuts_in_context_menus=true 22 | stylesheets=@Invalid() 23 | toolbutton_style=4 24 | underline_shortcut=1 25 | wheel_scroll_lines=3 26 | 27 | [SettingsWindow] 28 | geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\xa5\0\0\x2\xe3\0\0\0\0\0\0\0\0\0\0\x2\xa5\0\0\x2\xe3\0\0\0\0\0\0\0\0\x5V\0\0\0\0\0\0\0\0\0\0\x2\xa5\0\0\x2\xe3) 29 | 30 | [Troubleshooting] 31 | force_raster_widgets=1 32 | ignored_applications=@Invalid() 33 | -------------------------------------------------------------------------------- /.config/rofi/banners/dishwasher1910.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/rofi/banners/dishwasher1910.png -------------------------------------------------------------------------------- /.config/rofi/banners/emilia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.config/rofi/banners/emilia.png -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- 1 | configuration{ 2 | modi: "drun,filebrowser"; 3 | icon-theme: "Papirus"; 4 | show-icons: true; 5 | terminal: "konsole"; 6 | drun-display-format: "{icon} {name} "; 7 | } 8 | 9 | @theme "configs/dishwasher1910" 10 | 11 | -------------------------------------------------------------------------------- /.config/rofi/configs/dishwasher1910.rasi: -------------------------------------------------------------------------------- 1 | configuration { 2 | font: "Recursive Sans Linear Static 10"; 3 | display-drun: ""; 4 | sidebar-mode: false; 5 | } 6 | 7 | /* @theme "/dev/null" */ 8 | 9 | * { 10 | bg: #f9fbff; 11 | fg: #2b2b2b; 12 | button: #cadff4; 13 | 14 | background-color: @bg; 15 | text-color: @fg; 16 | } 17 | 18 | window { 19 | transparency: "real"; 20 | border-radius: 3px; 21 | width: 37%; 22 | height: 57%; 23 | y-offset: 10px; 24 | /* padding: 20px;*/ 25 | location: center; 26 | } 27 | 28 | prompt { enabled: false; } 29 | 30 | entry { 31 | placeholder: "Search"; 32 | expand: true; 33 | padding: 5px 1.5% 5px 1%; 34 | border-radius: 3px; 35 | background-color: #f9fbffcc; 36 | placeholder-color: @fg; 37 | } 38 | 39 | inputbar { 40 | children: [ prompt, entry ]; 41 | background-color: #00000000; 42 | text-color: @fg; 43 | expand: false; 44 | border-radius: 3px; 45 | /* padding: 8px; */ 46 | padding: 160px 320px 15px 30px; 47 | background-image: url("banners/dishwasher1910.png"); 48 | } 49 | 50 | listview { 51 | columns: 1; 52 | lines: 8; 53 | cycle: true; 54 | dynamic: true; 55 | layout: vertical; 56 | } 57 | 58 | mainbox { 59 | children: [ inputbar, listview ]; 60 | spacing: 2%; 61 | padding: 1.5% 1% 2% 1%; 62 | } 63 | 64 | element { 65 | orientation: horizontal; 66 | border-radius: 0%; 67 | padding: 1.5% 0% 1.5% 0%; 68 | } 69 | 70 | element-icon { 71 | margin: 0.5% 0% 0% 2.5%; 72 | } 73 | element-text { 74 | expand: true; 75 | vertical-align: 0.5; 76 | margin: 0.5% 3% 0% 0.7%; 77 | background-color: transparent; 78 | text-color: inherit; 79 | } 80 | 81 | element selected { 82 | background-color: #00000012; 83 | background-color: @button; 84 | text-color: #3692da; 85 | text-color: @fg; 86 | border-radius: 6px; 87 | } 88 | -------------------------------------------------------------------------------- /.config/rofi/configs/emilia-dark.rasi: -------------------------------------------------------------------------------- 1 | /*-*- mode: css; -*-*/ 2 | * { 3 | font: "SF Pro Text 11"; 4 | margin: 0; 5 | padding: 1; 6 | height: 368px; 7 | width: 666px; 8 | background-color: #1d1d23; 9 | text-color: grey; 10 | } 11 | 12 | window { 13 | border-radius: 3px; 14 | border: 2px solid ; 15 | border-color: #f9fbff; 16 | } 17 | 18 | mainbox { 19 | padding: 0px 0px 0px 300px; 20 | background-image: url("banners/emilia.png"); 21 | } 22 | 23 | inputbar { 24 | padding: 30px 0px 0px 0px; 25 | spacing: 10; 26 | margin: 0 0 -3 0; 27 | } 28 | 29 | prompt { 30 | padding: 7 0 20 34px; 31 | } 32 | 33 | entry { 34 | placeholder: "gaze into the abyss"; 35 | } 36 | 37 | listview { 38 | /* lines: 9; */ 39 | columns: 1; 40 | spacing: 10; 41 | padding: 9 40 15 20; } 42 | 43 | element-text { 44 | padding: 5px 10px 2px 20px; 45 | } 46 | 47 | element-text selected { 48 | text-color: #d1beef; 49 | } 50 | element-icon { size: 2ch ; } 51 | /* vim:ft=css 52 | -------------------------------------------------------------------------------- /.config/rofi/configs/emilia.rasi: -------------------------------------------------------------------------------- 1 | /*-*- mode: css; -*-*/ 2 | * { 3 | font: "Cantarell Medium 11"; 4 | margin: 0; 5 | padding: 0; 6 | height: 368px; 7 | width: 656px; 8 | background-color: #f9fbff; 9 | text-color: grey; 10 | } 11 | 12 | window { 13 | border-radius: 5px; 14 | transparency: "real"; 15 | border: 2px solid ; 16 | border-color: #8378c6; 17 | } 18 | 19 | mainbox { 20 | padding: 0px 0px 0px 300px; 21 | background-image: url("banners/emilia.png"); 22 | } 23 | 24 | inputbar { 25 | padding: 30px 0px 0px 0px; 26 | spacing: 10; 27 | margin: 0 0 -3 0; 28 | } 29 | 30 | prompt { 31 | padding: 3 0 20 34px; 32 | } 33 | 34 | entry { 35 | placeholder: "gaze into the abyss"; 36 | } 37 | 38 | listview { 39 | /* lines: 9; */ 40 | columns: 1; 41 | spacing: 10; 42 | padding: 9 40 15 20; } 43 | 44 | element-text { 45 | padding: 5px 10px 2px 20px; 46 | } 47 | 48 | 49 | /* element-icon { size: 1.65ch ; } */ 50 | element-text selected { 51 | text-color: #8378c6; 52 | } 53 | 54 | /* vim:ft=css 55 | -------------------------------------------------------------------------------- /.config/sway/colors/artoria.conf: -------------------------------------------------------------------------------- 1 | # Sway Window colors 2 | # Generated with Matugen 3 | 4 | # Window: border, background, text, indicator, child_border 5 | 6 | #Windows #border #background #text #indicator #child_border 7 | client.focused #553b71 #553b71 #efdbff #553b71 #553b71 8 | client.unfocused #553b71 #151218 #e8e0e8 #4f4559 #d0c1da 9 | client.focused_inactive #d9bafa #efdbff #151218 10 | client.placeholder #000000 #000000 #e8e0e8 11 | client.urgent #f2b7bf #653b42 #4b252c 12 | # client.background #151218 13 | 14 | -------------------------------------------------------------------------------- /.config/sway/colors/ei.conf: -------------------------------------------------------------------------------- 1 | set $base #f9fbff 2 | set $focused #8378c6 3 | set $urgent #f8929a 4 | set $normal #313131 5 | 6 | # class border bground text indicator child_border 7 | client.focused $focused $focused $base $focused $focused 8 | client.focused_inactive $base $base $normal #484E50 $normal 9 | client.unfocused $base $base $normal #292D2E $normal 10 | client.urgent $base $base $urgent #900000 $normal 11 | client.placeholder $base $base $normal #000000 $normal 12 | client.background $base 13 | 14 | #indicator - shows at bottom border with floating mode 15 | #child-border actual border 16 | -------------------------------------------------------------------------------- /.config/sway/colors/matugen.conf: -------------------------------------------------------------------------------- 1 | # Sway Window colors 2 | # Generated with Matugen 3 | 4 | # Window: border, background, text, indicator, child_border 5 | 6 | #Windows #border #background #text #indicator #child_border 7 | client.focused #e1e0ff #e1e0ff #12144b #e1e0ff #e1e0ff 8 | client.unfocused #e1e0ff #fcf8ff #1b1b21 #dfddf6 #c5c4dd 9 | client.focused_inactive #c0c1ff #e1e0ff #fcf8ff 10 | client.placeholder #000000 #000000 #1b1b21 11 | client.urgent #79536a #ffd8ed #ffffff 12 | # client.background #fcf8ff 13 | 14 | -------------------------------------------------------------------------------- /.config/user-dirs.dirs: -------------------------------------------------------------------------------- 1 | # This file is written by xdg-user-dirs-update 2 | # If you want to change or add directories, just edit the line you're 3 | # interested in. All local changes will be retained on the next run. 4 | # Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped 5 | # homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an 6 | # absolute path. No other format is supported. 7 | # 8 | XDG_DESKTOP_DIR="$HOME/desktop" 9 | XDG_DOCUMENTS_DIR="$HOME/documents" 10 | XDG_DOWNLOAD_DIR="$HOME/downloads" 11 | XDG_MUSIC_DIR="$HOME/music" 12 | XDG_PICTURES_DIR="$HOME/pictures" 13 | XDG_PUBLICSHARE_DIR="$HOME/" 14 | XDG_TEMPLATES_DIR="$HOME/" 15 | XDG_VIDEOS_DIR="$HOME/videos" 16 | -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- 1 | { 2 | "reload_style_on_change": true, 3 | "layer": "top", 4 | "position": "bottom", 5 | "height": 24, 6 | 7 | "modules-left": ["sway/workspaces", "sway/mode"], 8 | "modules-right": ["pulseaudio", "clock", "tray"], 9 | 10 | 11 | "sway/workspaces": { 12 | "format": "{index}" 13 | }, 14 | 15 | 16 | "tray": { 17 | "icon-size": 18, 18 | "spacing": 5 19 | }, 20 | 21 | 22 | "clock": { 23 | "format": "{:%a %b %e %R}", 24 | "interval": 30, 25 | "on-scroll-up": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+", 26 | "on-scroll-down": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-", 27 | "on-click": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle", 28 | "on-click-right": "pavucontrol", 29 | }, 30 | 31 | "pulseaudio": { 32 | "format": "", 33 | "format-muted":" X", 34 | "interval": 60, 35 | "format-icons": { 36 | "default": [""] 37 | }, 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /.config/waybar/matugen.css: -------------------------------------------------------------------------------- 1 | @define-color bg #f8f9ff; 2 | @define-color fg #191c20; 3 | @define-color urgent-bg #ffdad6; 4 | @define-color urgent-fg #410002; 5 | @define-color highlight-bg #39608f; 6 | @define-color highlight-fg #ffffff; 7 | 8 | -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- 1 | @import url('matugen.css'); 2 | 3 | * { 4 | font-family: "Cantarell"; 5 | font-weight: 600; 6 | font-size: 13.5px; 7 | } 8 | 9 | button { 10 | border-radius: 0px; 11 | } 12 | 13 | window#waybar { 14 | background-color: @bg; 15 | color: @fg; 16 | } 17 | 18 | 19 | .modules-left { 20 | padding: 0px 0px 0px 0px; 21 | } 22 | 23 | 24 | .modules-right { 25 | background-color: @highlight-bg; 26 | color: @highlight-fg; 27 | padding: 0px 5px 0px 0px; 28 | } 29 | 30 | #workspaces button { 31 | padding: 0px 11px 0px 11px; 32 | min-width: 1px; 33 | color: #888888; 34 | } 35 | 36 | #workspaces button.focused { 37 | background-color: @highlight-bg; 38 | color: @highlight-fg; 39 | } 40 | 41 | #workspaces button.urgent { 42 | background-color: @urgent-bg; 43 | color: @urgent-fg; 44 | } 45 | 46 | #mode { 47 | background-color: @urgent-bg; 48 | color: @urgent-fg; 49 | padding: 0px 5px 0px 5px; 50 | /*border: 1px solid #2f343a;*/ 51 | } 52 | 53 | #clock { 54 | margin: 0px 15px 0px 10px; 55 | } 56 | 57 | #tray{ 58 | padding: 0px 5px 0px 0px; 59 | /*margin: 0px 5px 0px 0px;*/ 60 | } 61 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- 1 |

My Crappy Dotfiles :)

2 |

Cinnamonroll:

3 | current setup 4 |

Moon:

5 | old one 6 |
7 | . moved cinnamonroll dots to cinnamonroll branch
8 | . moved moon dots to old-moon branch
9 | . moved gruvbox dots to gruvbox branch
10 | 11 | special thanks to:
12 | - [Gwynsav](https://github.com/Gwynsav/gwileful), for the gwileful config
13 | - [Stardust](https://github.com/Stardust-kyun/dotfiles), used their config as reference for some stuff
14 | - [Nekonako](https://github.com/nekonako/dotfiles), literally learnt how to make widgets using their config :3
15 | -------------------------------------------------------------------------------- /.github/images/cinnamonroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.github/images/cinnamonroll.png -------------------------------------------------------------------------------- /.github/images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.github/images/moon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dots 2 | *.directory 3 | -------------------------------------------------------------------------------- /.local/share/kio/servicemenus/wallpaper.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Service 3 | MimeType=image/*; 4 | X-KDE-Submenu=Set as Wallpaper 5 | Icon=tab-new-background 6 | Actions=normal;blur;top;lockscreen 7 | 8 | [Desktop Action normal] 9 | Name=Normal 10 | Icon=backgroundtool 11 | Exec=wallpaper.sh "%u" normal 12 | 13 | [Desktop Action blur] 14 | Name=Blur 15 | Icon=blurimage 16 | Exec=wallpaper.sh "%u" blur 17 | 18 | [Desktop Action top] 19 | Name=Top 20 | Icon=autocorrection 21 | Exec=wallpaper.sh "%u" top 22 | 23 | [Desktop Action lockscreen] 24 | Name=Lockscreen 25 | Icon=lock 26 | Exec=wallpaper.sh "%u" lockscreen 27 | -------------------------------------------------------------------------------- /.local/share/konsole/AdwaitaEmacs.colorscheme: -------------------------------------------------------------------------------- 1 | ######################################################### 2 | ######################################################### 3 | ## -*- mode: conf -*- ## 4 | ## ________________ __________ ## 5 | ## ___ |_____ /__ _______ ___(_)_ /______ _ ## 6 | ## __ /| | __ /__ | /| / / __ `/_ /_ __/ __ `/ ## 7 | ## _ ___ / /_/ / __ |/ |/ // /_/ /_ / / /_ / /_/ / ## 8 | ## /_/ |_\__,_/ ____/|__/ \__,_/ /_/ \__/ \__,_/ ## 9 | ## ## 10 | ## __________ ## 11 | ## ___ ____/______ _________ ______________ ## 12 | ## __ __/ __ __ `__ \ __ `/ ___/_ ___/ ## 13 | ## _ /___ _ / / / / / /_/ // /__ _(__ ) ## 14 | ## /_____/ /_/ /_/ /_/\__,_/ \___/ /____/ ## 15 | ## ## 16 | ## Based on Adwaita Emacs theme by William Stevenson ## 17 | ## Created by Zinjanthr0pus ## 18 | ## License: GPLv3 ## 19 | ######################################################### 20 | ######################################################### 21 | 22 | [Background] 23 | Color=237,237,237 24 | 25 | [BackgroundFaint] 26 | Color=255,255,255 27 | 28 | [BackgroundIntense] 29 | Color=255,255,255 30 | 31 | [Color0] 32 | Color=46,52,54 33 | 34 | [Color0Faint] 35 | Color=0,0,0 36 | 37 | [Color0Intense] 38 | Color=0,0,0 39 | 40 | [Color1] 41 | Color=165,42,42 42 | 43 | [Color1Faint] 44 | Color=245,102,109 45 | 46 | [Color1Intense] 47 | Color=245,102,109 48 | 49 | [Color2] 50 | Color=78,154,6 51 | 52 | [Color2Faint] 53 | Color=156,187,67 54 | 55 | [Color2Intense] 56 | Color=156,187,67 57 | 58 | [Color3] 59 | Color=206,92,0 60 | 61 | [Color3Faint] 62 | Color=206,175,0 63 | 64 | [Color3Intense] 65 | Color=206,175,0 66 | 67 | [Color4] 68 | Color=32,74,135 69 | 70 | [Color4Faint] 71 | Color=0,132,200 72 | 73 | [Color4Intense] 74 | Color=0,132,200 75 | 76 | [Color5] 77 | Color=160,32,240 78 | 79 | [Color5Faint] 80 | Color=168,121,156 81 | 82 | [Color5Intense] 83 | Color=168,121,156 84 | 85 | [Color6] 86 | Color=47,139,88 87 | 88 | [Color6Faint] 89 | Color=0,187,255 90 | 91 | [Color6Intense] 92 | Color=0,187,255 93 | 94 | [Color7] 95 | Color=237,237,237 96 | 97 | [Color7Faint] 98 | Color=255,255,255 99 | 100 | [Color7Intense] 101 | Color=255,255,255 102 | 103 | [Foreground] 104 | Color=46,52,54 105 | 106 | [ForegroundFaint] 107 | Color=0,0,0 108 | 109 | [ForegroundIntense] 110 | Color=0,0,0 111 | 112 | [General] 113 | Anchor=0.5,0.5 114 | Blur=true 115 | ColorRandomization=false 116 | Description=AdwaitaEmacs 117 | FillStyle=Tile 118 | Opacity=1 119 | Wallpaper= 120 | WallpaperOpacity=1 121 | -------------------------------------------------------------------------------- /.local/share/konsole/Amy-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,240,241 3 | 4 | [BackgroundFaint] 5 | Color=232,233,234 6 | 7 | [BackgroundIntense] 8 | Color=214,215,216 9 | 10 | [Color0] 11 | Color=239,240,241 12 | 13 | [Color0Faint] 14 | Color=229,230,231 15 | 16 | [Color0Intense] 17 | Color=78,157,235 18 | 19 | [Color1] 20 | Color=255,85,127 21 | 22 | [Color1Faint] 23 | Color=163,54,82 24 | 25 | [Color1Intense] 26 | Color=218,73,109 27 | 28 | [Color2] 29 | Color=238,158,119 30 | 31 | [Color2Faint] 32 | Color=84,120,184 33 | 34 | [Color2Intense] 35 | Color=0,209,153 36 | 37 | [Color3] 38 | Color=0,170,255 39 | 40 | [Color3Faint] 41 | Color=0,131,197 42 | 43 | [Color3Intense] 44 | Color=0,155,227 45 | 46 | [Color4] 47 | Color=89,128,195 48 | 49 | [Color4Faint] 50 | Color=74,98,145 51 | 52 | [Color4Intense] 53 | Color=114,149,221 54 | 55 | [Color5] 56 | Color=170,85,255 57 | 58 | [Color5Faint] 59 | Color=181,121,181 60 | 61 | [Color5Intense] 62 | Color=218,145,218 63 | 64 | [Color6] 65 | Color=89,128,195 66 | 67 | [Color6Faint] 68 | Color=186,93,139 69 | 70 | [Color6Intense] 71 | Color=152,76,114 72 | 73 | [Color7] 74 | Color=186,200,223 75 | 76 | [Color7Faint] 77 | Color=85,170,255 78 | 79 | [Color7Intense] 80 | Color=255,255,127 81 | 82 | [Foreground] 83 | Color=30,36,49 84 | 85 | [ForegroundFaint] 86 | Color=35,42,57 87 | 88 | [ForegroundIntense] 89 | Color=0,170,127 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=Amy-Light-Konsole 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Aritim Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=248,252,255 3 | RandomHueRange=360 4 | RandomSaturationRange=100 5 | 6 | [BackgroundFaint] 7 | Color=248,252,255 8 | RandomHueRange=360 9 | RandomSaturationRange=100 10 | 11 | [BackgroundIntense] 12 | Color=248,252,255 13 | RandomHueRange=360 14 | RandomSaturationRange=100 15 | 16 | [Color0] 17 | Color=21,27,31 18 | 19 | [Color0Faint] 20 | Color=27,30,31 21 | 22 | [Color0Intense] 23 | Color=11,14,16 24 | 25 | [Color1] 26 | Color=226,49,26 27 | 28 | [Color1Faint] 29 | Color=191,56,56 30 | 31 | [Color1Intense] 32 | Color=203,41,23 33 | 34 | [Color2] 35 | Color=61,90,129 36 | 37 | [Color2Faint] 38 | Color=89,106,129 39 | 40 | [Color2Intense] 41 | Color=48,83,129 42 | 43 | [Color3] 44 | Color=255,163,14 45 | 46 | [Color3Faint] 47 | Color=207,145,45 48 | 49 | [Color3Intense] 50 | Color=226,144,12 51 | 52 | [Color4] 53 | Color=30,138,91 54 | 55 | [Color4Faint] 56 | Color=57,138,101 57 | 58 | [Color4Intense] 59 | Color=8,138,77 60 | 61 | [Color5] 62 | Color=135,98,172 63 | 64 | [Color5Faint] 65 | Color=145,118,172 66 | 67 | [Color5Intense] 68 | Color=128,84,172 69 | 70 | [Color6] 71 | Color=72,178,174 72 | 73 | [Color6Faint] 74 | Color=108,178,175 75 | 76 | [Color6Intense] 77 | Color=52,178,172 78 | 79 | [Color7] 80 | Color=131,139,149 81 | 82 | [Color7Faint] 83 | Color=143,146,149 84 | 85 | [Color7Intense] 86 | Color=120,133,149 87 | 88 | [Foreground] 89 | Color=28,30,33 90 | RandomHueRange=360 91 | RandomSaturationRange=100 92 | 93 | [ForegroundFaint] 94 | Color=67,71,73 95 | RandomHueRange=360 96 | RandomSaturationRange=100 97 | 98 | [ForegroundIntense] 99 | Color=19,23,25 100 | RandomHueRange=360 101 | RandomSaturationRange=100 102 | 103 | [General] 104 | Anchor=0.5,0.5 105 | Blur=true 106 | ColorRandomization=false 107 | Description=Aritim Light 108 | FillStyle=Tile 109 | Opacity=1 110 | Wallpaper= 111 | WallpaperFlipType=NoFlip 112 | WallpaperOpacity=1 113 | -------------------------------------------------------------------------------- /.local/share/konsole/Breeze Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=250,250,250 3 | 4 | [BackgroundFaint] 5 | Color=230,230,230 6 | 7 | [BackgroundIntense] 8 | Color=255,255,255 9 | 10 | [Color0] 11 | Color=56,58,66 12 | 13 | [Color0Faint] 14 | Color=68,66,76 15 | 16 | [Color0Intense] 17 | Color=28,26,36 18 | 19 | [Color1] 20 | Color=228,86,74 21 | 22 | [Color1Faint] 23 | Color=198,96,94 24 | 25 | [Color1Intense] 26 | Color=248,54,54 27 | 28 | [Color2] 29 | Color=80,160,80 30 | 31 | [Color2Faint] 32 | Color=100,140,100 33 | 34 | [Color2Intense] 35 | Color=80,200,80 36 | 37 | [Color3] 38 | Color=194,132,2 39 | 40 | [Color3Faint] 41 | Color=174,152,2 42 | 43 | [Color3Intense] 44 | Color=222,102,2 45 | 46 | [Color4] 47 | Color=0,112,212 48 | 49 | [Color4Faint] 50 | Color=20,132,192 51 | 52 | [Color4Intense] 53 | Color=0,92,232 54 | 55 | [Color5] 56 | Color=166,38,164 57 | 58 | [Color5Faint] 59 | Color=136,84,136 60 | 61 | [Color5Intense] 62 | Color=186,14,184 63 | 64 | [Color6] 65 | Color=10,150,180 66 | 67 | [Color6Faint] 68 | Color=30,170,160 69 | 70 | [Color6Intense] 71 | Color=0,170,200 72 | 73 | [Color7] 74 | Color=250,250,250 75 | 76 | [Color7Faint] 77 | Color=230,230,230 78 | 79 | [Color7Intense] 80 | Color=255,255,255 81 | 82 | [Foreground] 83 | Color=56,58,66 84 | 85 | [ForegroundFaint] 86 | Color=68,66,76 87 | 88 | [ForegroundIntense] 89 | Color=28,26,36 90 | 91 | [General] 92 | Blur=false 93 | Description=Breeze Light 94 | Opacity=1 95 | Wallpaper= 96 | -------------------------------------------------------------------------------- /.local/share/konsole/Edge Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=250,250,250 3 | 4 | [BackgroundFaint] 5 | Color=250,250,250 6 | 7 | [BackgroundIntense] 8 | Color=250,250,250 9 | 10 | [Color0] 11 | Color=75,80,91 12 | 13 | [Color0Faint] 14 | Color=75,80,91 15 | 16 | [Color0Intense] 17 | Color=75,80,91 18 | 19 | [Color1] 20 | Color=208,88,88 21 | 22 | [Color1Faint] 23 | Color=208,88,88 24 | 25 | [Color1Intense] 26 | Color=208,88,88 27 | 28 | [Color2] 29 | Color=96,142,50 30 | 31 | [Color2Faint] 32 | Color=96,142,50 33 | 34 | [Color2Intense] 35 | Color=96,142,50 36 | 37 | [Color3] 38 | Color=190,126,5 39 | 40 | [Color3Faint] 41 | Color=190,126,5 42 | 43 | [Color3Intense] 44 | Color=190,126,5 45 | 46 | [Color4] 47 | Color=80,121,190 48 | 49 | [Color4Faint] 50 | Color=80,121,190 51 | 52 | [Color4Intense] 53 | Color=80,121,190 54 | 55 | [Color5] 56 | Color=176,92,204 57 | 58 | [Color5Faint] 59 | Color=176,92,204 60 | 61 | [Color5Intense] 62 | Color=176,92,204 63 | 64 | [Color6] 65 | Color=58,139,132 66 | 67 | [Color6Faint] 68 | Color=58,139,132 69 | 70 | [Color6Intense] 71 | Color=58,139,132 72 | 73 | [Color7] 74 | Color=221,226,231 75 | 76 | [Color7Faint] 77 | Color=221,226,231 78 | 79 | [Color7Intense] 80 | Color=221,226,231 81 | 82 | [Foreground] 83 | Color=75,80,91 84 | 85 | [ForegroundFaint] 86 | Color=75,80,91 87 | 88 | [ForegroundIntense] 89 | Color=75,80,91 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Edge Light 95 | Opacity=1 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /.local/share/konsole/Edna-Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=204,208,214 3 | 4 | [BackgroundFaint] 5 | Color=214,219,225 6 | 7 | [BackgroundIntense] 8 | Color=196,200,206 9 | 10 | [Color0] 11 | Color=69,92,103 12 | 13 | [Color0Faint] 14 | Color=80,107,120 15 | 16 | [Color0Intense] 17 | Color=59,78,87 18 | 19 | [Color1] 20 | Color=213,79,139 21 | 22 | [Color1Faint] 23 | Color=229,85,150 24 | 25 | [Color1Intense] 26 | Color=192,72,126 27 | 28 | [Color2] 29 | Color=12,141,117 30 | 31 | [Color2Faint] 32 | Color=13,154,126 33 | 34 | [Color2Intense] 35 | Color=12,134,114 36 | 37 | [Color3] 38 | Color=223,129,94 39 | 40 | [Color3Faint] 41 | Color=240,139,102 42 | 43 | [Color3Intense] 44 | Color=206,119,87 45 | 46 | [Color4] 47 | Color=40,130,203 48 | 49 | [Color4Faint] 50 | Color=43,141,216 51 | 52 | [Color4Intense] 53 | Color=37,122,191 54 | 55 | [Color5] 56 | Color=186,110,231 57 | 58 | [Color5Faint] 59 | Color=201,118,249 60 | 61 | [Color5Intense] 62 | Color=175,102,214 63 | 64 | [Color6] 65 | Color=0,153,158 66 | 67 | [Color6Faint] 68 | Color=0,163,166 69 | 70 | [Color6Intense] 71 | Color=0,145,147 72 | 73 | [Color7] 74 | Color=111,145,160 75 | 76 | [Color7Faint] 77 | Color=117,153,169 78 | 79 | [Color7Intense] 80 | Color=105,136,151 81 | 82 | [Foreground] 83 | Color=42,45,49 84 | 85 | [ForegroundFaint] 86 | Color=57,60,66 87 | 88 | [ForegroundIntense] 89 | Color=30,33,35 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=true 95 | Description=Edna-Light 96 | FillStyle=Tile 97 | Opacity=0.8 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Lenny.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=220,220,220 3 | 4 | [BackgroundFaint] 5 | Color=248,248,249 6 | 7 | [BackgroundIntense] 8 | Color=244,244,245 9 | 10 | [Color0] 11 | Color=59,59,59 12 | 13 | [Color0Faint] 14 | Color=71,71,71 15 | 16 | [Color0Intense] 17 | Color=54,54,54 18 | 19 | [Color1] 20 | Color=253,55,98 21 | 22 | [Color1Faint] 23 | Color=253,70,110 24 | 25 | [Color1Intense] 26 | Color=253,46,89 27 | 28 | [Color2] 29 | Color=117,75,255 30 | 31 | [Color2Faint] 32 | Color=128,96,255 33 | 34 | [Color2Intense] 35 | Color=112,64,255 36 | 37 | [Color3] 38 | Color=41,86,177 39 | 40 | [Color3Faint] 41 | Color=43,93,191 42 | 43 | [Color3Intense] 44 | Color=35,74,152 45 | 46 | [Color4] 47 | Color=74,131,255 48 | 49 | [Color4Faint] 50 | Color=83,143,255 51 | 52 | [Color4Intense] 53 | Color=60,120,255 54 | 55 | [Color5] 56 | Color=203,117,247 57 | 58 | [Color5Faint] 59 | Color=175,101,214 60 | 61 | [Color5Intense] 62 | Color=175,102,214 63 | 64 | [Color6] 65 | Color=72,157,165 66 | 67 | [Color6Faint] 68 | Color=77,169,177 69 | 70 | [Color6Intense] 71 | Color=68,149,156 72 | 73 | [Color7] 74 | Color=63,81,90 75 | 76 | [Color7Faint] 77 | Color=58,75,83 78 | 79 | [Color7Intense] 80 | Color=55,71,79 81 | 82 | [Foreground] 83 | Color=77,78,79 84 | 85 | [ForegroundFaint] 86 | Color=87,88,89 87 | 88 | [ForegroundIntense] 89 | Color=65,66,67 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=true 95 | Description=Lenny 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Lenny_mine.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=255,255,255 3 | 4 | [BackgroundFaint] 5 | Color=248,248,249 6 | 7 | [BackgroundIntense] 8 | Color=244,244,245 9 | 10 | [Color0] 11 | Color=59,59,59 12 | 13 | [Color0Faint] 14 | Color=71,71,71 15 | 16 | [Color0Intense] 17 | Color=54,54,54 18 | 19 | [Color1] 20 | Color=253,55,98 21 | 22 | [Color1Faint] 23 | Color=253,70,110 24 | 25 | [Color1Intense] 26 | Color=253,46,89 27 | 28 | [Color2] 29 | Color=117,75,255 30 | 31 | [Color2Faint] 32 | Color=128,96,255 33 | 34 | [Color2Intense] 35 | Color=112,64,255 36 | 37 | [Color3] 38 | Color=41,86,177 39 | 40 | [Color3Faint] 41 | Color=43,93,191 42 | 43 | [Color3Intense] 44 | Color=35,74,152 45 | 46 | [Color4] 47 | Color=74,131,255 48 | 49 | [Color4Faint] 50 | Color=83,143,255 51 | 52 | [Color4Intense] 53 | Color=60,120,255 54 | 55 | [Color5] 56 | Color=203,117,247 57 | 58 | [Color5Faint] 59 | Color=175,101,214 60 | 61 | [Color5Intense] 62 | Color=175,102,214 63 | 64 | [Color6] 65 | Color=72,157,165 66 | 67 | [Color6Faint] 68 | Color=77,169,177 69 | 70 | [Color6Intense] 71 | Color=68,149,156 72 | 73 | [Color7] 74 | Color=63,81,90 75 | 76 | [Color7Faint] 77 | Color=58,75,83 78 | 79 | [Color7Intense] 80 | Color=55,71,79 81 | 82 | [Foreground] 83 | Color=77,78,79 84 | 85 | [ForegroundFaint] 86 | Color=87,88,89 87 | 88 | [ForegroundIntense] 89 | Color=65,66,67 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=true 95 | Description=Lenny-mine 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Materia.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=249,249,249 3 | 4 | [BackgroundFaint] 5 | Color=249,249,249 6 | 7 | [BackgroundIntense] 8 | Color=249,249,249 9 | 10 | [Color0] 11 | Color=199,199,199 12 | 13 | [Color0Faint] 14 | Color=199,199,199 15 | 16 | [Color0Intense] 17 | Color=199,199,199 18 | 19 | [Color1] 20 | Color=244,67,54 21 | 22 | [Color1Faint] 23 | Color=244,67,54 24 | 25 | [Color1Intense] 26 | Color=244,67,54 27 | 28 | [Color2] 29 | Color=76,175,80 30 | 31 | [Color2Faint] 32 | Color=76,175,80 33 | 34 | [Color2Intense] 35 | Color=76,175,80 36 | 37 | [Color3] 38 | Color=255,152,0 39 | 40 | [Color3Faint] 41 | Color=255,152,0 42 | 43 | [Color3Intense] 44 | Color=255,152,0 45 | 46 | [Color4] 47 | Color=26,115,232 48 | 49 | [Color4Faint] 50 | Color=26,115,232 51 | 52 | [Color4Intense] 53 | Color=26,115,232 54 | 55 | [Color5] 56 | Color=156,39,176 57 | 58 | [Color5Faint] 59 | Color=156,39,176 60 | 61 | [Color5Intense] 62 | Color=156,39,176 63 | 64 | [Color6] 65 | Color=0,151,167 66 | 67 | [Color6Faint] 68 | Color=0,151,167 69 | 70 | [Color6Intense] 71 | Color=0,151,167 72 | 73 | [Color7] 74 | Color=36,36,36 75 | 76 | [Color7Faint] 77 | Color=36,36,36 78 | 79 | [Color7Intense] 80 | Color=36,36,36 81 | 82 | [Foreground] 83 | Color=68,68,68 84 | 85 | [ForegroundFaint] 86 | Color=68,68,68 87 | 88 | [ForegroundIntense] 89 | Color=36,36,36 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=Materia 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Modus-Operandi.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=255,255,255 3 | 4 | [BackgroundFaint] 5 | Color=255,255,255 6 | 7 | [BackgroundIntense] 8 | Color=255,255,255 9 | 10 | [Color0] 11 | Color=0,0,0 12 | 13 | [Color0Faint] 14 | Color=88,88,88 15 | 16 | [Color0Intense] 17 | Color=0,0,0 18 | 19 | [Color1] 20 | Color=166,0,0 21 | 22 | [Color1Faint] 23 | Color=166,0,0 24 | 25 | [Color1Intense] 26 | Color=151,37,0 27 | 28 | [Color2] 29 | Color=0,104,0 30 | 31 | [Color2Faint] 32 | Color=0,104,0 33 | 34 | [Color2Intense] 35 | Color=49,101,0 36 | 37 | [Color3] 38 | Color=111,85,0 39 | 40 | [Color3Faint] 41 | Color=111,85,0 42 | 43 | [Color3Intense] 44 | Color=136,73,0 45 | 46 | [Color4] 47 | Color=0,49,169 48 | 49 | [Color4Faint] 50 | Color=0,49,169 51 | 52 | [Color4Intense] 53 | Color=53,79,207 54 | 55 | [Color5] 56 | Color=114,16,69 57 | 58 | [Color5Faint] 59 | Color=114,16,69 60 | 61 | [Color5Intense] 62 | Color=83,26,182 63 | 64 | [Color6] 65 | Color=0,83,139 66 | 67 | [Color6Faint] 68 | Color=0,83,139 69 | 70 | [Color6Intense] 71 | Color=0,90,95 72 | 73 | [Color7] 74 | Color=225,225,225 75 | 76 | [Color7Faint] 77 | Color=225,225,225 78 | 79 | [Color7Intense] 80 | Color=255,255,255 81 | 82 | [Foreground] 83 | Color=0,0,0 84 | 85 | [ForegroundFaint] 86 | Color=0,0,0 87 | 88 | [ForegroundIntense] 89 | Color=0,0,0 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=Modus Operandi 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Moe.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=247,249,249 3 | 4 | [BackgroundFaint] 5 | Color=225,226,226 6 | 7 | [BackgroundIntense] 8 | Color=235,236,236 9 | 10 | [Color0] 11 | Color=43,43,43 12 | 13 | [Color0Faint] 14 | Color=43,43,43 15 | 16 | [Color0Intense] 17 | Color=38,38,38 18 | 19 | [Color1] 20 | Color=255,88,88 21 | 22 | [Color1Faint] 23 | Color=255,102,102 24 | 25 | [Color1Intense] 26 | Color=224,77,77 27 | 28 | [Color2] 29 | Color=37,148,144 30 | 31 | [Color2Faint] 32 | Color=37,154,152 33 | 34 | [Color2Intense] 35 | Color=29,118,117 36 | 37 | [Color3] 38 | Color=48,147,186 39 | 40 | [Color3Faint] 41 | Color=50,159,199 42 | 43 | [Color3Intense] 44 | Color=44,128,167 45 | 46 | [Color4] 47 | Color=255,158,99 48 | 49 | [Color4Faint] 50 | Color=255,154,99 51 | 52 | [Color4Intense] 53 | Color=229,138,89 54 | 55 | [Color5] 56 | Color=198,121,221 57 | 58 | [Color5Faint] 59 | Color=198,121,221 60 | 61 | [Color5Intense] 62 | Color=185,112,207 63 | 64 | [Color6] 65 | Color=255,99,118 66 | 67 | [Color6Faint] 68 | Color=255,99,120 69 | 70 | [Color6Intense] 71 | Color=224,87,105 72 | 73 | [Color7] 74 | Color=56,71,79 75 | 76 | [Color7Faint] 77 | Color=67,85,94 78 | 79 | [Color7Intense] 80 | Color=50,64,71 81 | 82 | [Foreground] 83 | Color=89,103,119 84 | 85 | [ForegroundFaint] 86 | Color=100,116,134 87 | 88 | [ForegroundIntense] 89 | Color=75,86,100 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Moe 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Monochrome.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=30,30,32 3 | 4 | [BackgroundFaint] 5 | Color=30,30,32 6 | 7 | [BackgroundIntense] 8 | Color=30,30,32 9 | 10 | [Color0] 11 | Color=50,50,52 12 | 13 | [Color0Faint] 14 | Color=50,50,52 15 | 16 | [Color0Intense] 17 | Color=110,110,112 18 | 19 | [Color1] 20 | Color=242,119,122 21 | 22 | [Color1Faint] 23 | Color=242,119,122 24 | 25 | [Color1Intense] 26 | Color=242,119,122 27 | 28 | [Color2] 29 | Color=153,204,153 30 | 31 | [Color2Faint] 32 | Color=153,204,153 33 | 34 | [Color2Intense] 35 | Color=153,204,153 36 | 37 | [Color3] 38 | Color=255,204,102 39 | 40 | [Color3Faint] 41 | Color=255,204,102 42 | 43 | [Color3Intense] 44 | Color=255,204,102 45 | 46 | [Color4] 47 | Color=102,153,204 48 | 49 | [Color4Faint] 50 | Color=102,153,204 51 | 52 | [Color4Intense] 53 | Color=102,153,204 54 | 55 | [Color5] 56 | Color=204,153,204 57 | 58 | [Color5Faint] 59 | Color=204,153,204 60 | 61 | [Color5Intense] 62 | Color=204,153,204 63 | 64 | [Color6] 65 | Color=102,204,204 66 | 67 | [Color6Faint] 68 | Color=102,204,204 69 | 70 | [Color6Intense] 71 | Color=102,204,204 72 | 73 | [Color7] 74 | Color=190,190,192 75 | 76 | [Color7Faint] 77 | Color=190,190,192 78 | 79 | [Color7Intense] 80 | Color=220,220,222 81 | 82 | [Foreground] 83 | Color=190,190,192 84 | 85 | [ForegroundFaint] 86 | Color=190,190,192 87 | 88 | [ForegroundIntense] 89 | Color=220,220,222 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Monochrome 96 | FillStyle=Tile 97 | Opacity=0.95 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/NevePlasmaLight.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=225,225,225 3 | 4 | [BackgroundFaint] 5 | Color=247,247,247 6 | 7 | [BackgroundIntense] 8 | Color=247,247,247 9 | 10 | [Color0] 11 | Color=203,204,213 12 | 13 | [Color0Faint] 14 | Color=203,204,213 15 | 16 | [Color0Intense] 17 | Color=222,223,232 18 | 19 | [Color1] 20 | Color=201,14,66 21 | 22 | [Color1Faint] 23 | Color=201,14,66 24 | 25 | [Color1Intense] 26 | Color=193,49,80 27 | 28 | [Color2] 29 | Color=33,136,58 30 | 31 | [Color2Faint] 32 | Color=33,136,58 33 | 34 | [Color2Intense] 35 | Color=53,159,118 36 | 37 | [Color3] 38 | Color=213,77,23 39 | 40 | [Color3Faint] 41 | Color=213,77,23 42 | 43 | [Color3Intense] 44 | Color=184,148,39 45 | 46 | [Color4] 47 | Color=0,129,209 48 | 49 | [Color4Faint] 50 | Color=30,68,221 51 | 52 | [Color4Intense] 53 | Color=13,119,195 54 | 55 | [Color5] 56 | Color=109,27,237 57 | 58 | [Color5Faint] 59 | Color=109,27,237 60 | 61 | [Color5Intense] 62 | Color=192,13,179 63 | 64 | [Color6] 65 | Color=31,77,122 66 | 67 | [Color6Faint] 68 | Color=31,77,122 69 | 70 | [Color6Intense] 71 | Color=91,128,173 72 | 73 | [Color7] 74 | Color=0,0,0 75 | 76 | [Color7Faint] 77 | Color=0,0,0 78 | 79 | [Color7Intense] 80 | Color=29,29,34 81 | 82 | [Foreground] 83 | Color=42,44,51 84 | 85 | [ForegroundFaint] 86 | Color=42,44,51 87 | 88 | [ForegroundIntense] 89 | Color=42,44,51 90 | 91 | [General] 92 | Blur=true 93 | Description=NevePlasmaLight 94 | Opacity=0.85 95 | Wallpaper= 96 | -------------------------------------------------------------------------------- /.local/share/konsole/Noir-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=255,255,255 3 | RandomHueRange=360 4 | RandomSaturationRange=100 5 | 6 | [BackgroundFaint] 7 | Color=38,46,63 8 | RandomHueRange=360 9 | RandomSaturationRange=100 10 | 11 | [BackgroundIntense] 12 | Color=28,31,34 13 | RandomHueRange=360 14 | RandomSaturationRange=100 15 | 16 | [Color0] 17 | Color=0,101,145 18 | 19 | [Color0Faint] 20 | Color=40,45,49 21 | 22 | [Color0Intense] 23 | Color=127,140,141 24 | 25 | [Color1] 26 | Color=0,148,206 27 | 28 | [Color1Faint] 29 | Color=90,128,138 30 | 31 | [Color1Intense] 32 | Color=255,85,127 33 | 34 | [Color2] 35 | Color=0,188,138 36 | 37 | [Color2Faint] 38 | Color=0,161,129 39 | 40 | [Color2Intense] 41 | Color=0,198,159 42 | 43 | [Color3] 44 | Color=131,131,197 45 | 46 | [Color3Faint] 47 | Color=153,102,76 48 | 49 | [Color3Intense] 50 | Color=253,188,75 51 | 52 | [Color4] 53 | Color=67,90,99 54 | 55 | [Color4Faint] 56 | Color=27,102,143 57 | 58 | [Color4Intense] 59 | Color=163,190,140 60 | 61 | [Color5] 62 | Color=255,85,0 63 | 64 | [Color5Faint] 65 | Color=163,125,194 66 | 67 | [Color5Intense] 68 | Color=0,159,114 69 | 70 | [Color6] 71 | Color=0,148,206 72 | 73 | [Color6Faint] 74 | Color=33,152,134 75 | 76 | [Color6Intense] 77 | Color=0,175,239 78 | 79 | [Color7] 80 | Color=67,90,99 81 | 82 | [Color7Faint] 83 | Color=211,218,227 84 | 85 | [Color7Intense] 86 | Color=136,192,208 87 | 88 | [Foreground] 89 | Color=0,22,33 90 | RandomHueRange=360 91 | RandomSaturationRange=100 92 | 93 | [ForegroundFaint] 94 | Color=0,31,47 95 | RandomHueRange=360 96 | RandomSaturationRange=100 97 | 98 | [ForegroundIntense] 99 | Color=0,101,145 100 | RandomHueRange=360 101 | RandomSaturationRange=100 102 | 103 | [General] 104 | Anchor=0.5,0.5 105 | Blur=true 106 | ColorRandomization=false 107 | Description=Noir-Light-Konsole 108 | FillStyle=Tile 109 | Opacity=1 110 | Wallpaper= 111 | WallpaperFlipType=NoFlip 112 | WallpaperOpacity=1 113 | -------------------------------------------------------------------------------- /.local/share/konsole/One Half Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=250,250,250 3 | 4 | [BackgroundFaint] 5 | Color=250,250,250 6 | 7 | [BackgroundIntense] 8 | Color=250,250,250 9 | 10 | [Color0] 11 | Color=56,58,66 12 | 13 | [Color0Faint] 14 | Color=56,58,66 15 | 16 | [Color0Intense] 17 | Color=56,58,66 18 | 19 | [Color1] 20 | Color=228,86,73 21 | 22 | [Color1Faint] 23 | Color=228,86,73 24 | 25 | [Color1Intense] 26 | Color=228,86,73 27 | 28 | [Color2] 29 | Color=80,161,79 30 | 31 | [Color2Faint] 32 | Color=80,161,79 33 | 34 | [Color2Intense] 35 | Color=80,161,79 36 | 37 | [Color3] 38 | Color=193,132,1 39 | 40 | [Color3Faint] 41 | Color=193,132,1 42 | 43 | [Color3Intense] 44 | Color=193,132,1 45 | 46 | [Color4] 47 | Color=1,132,188 48 | 49 | [Color4Faint] 50 | Color=1,132,188 51 | 52 | [Color4Intense] 53 | Color=1,132,188 54 | 55 | [Color5] 56 | Color=166,38,164 57 | 58 | [Color5Faint] 59 | Color=166,38,164 60 | 61 | [Color5Intense] 62 | Color=166,38,164 63 | 64 | [Color6] 65 | Color=9,151,179 66 | 67 | [Color6Faint] 68 | Color=9,151,179 69 | 70 | [Color6Intense] 71 | Color=9,151,179 72 | 73 | [Color7] 74 | Color=250,250,250 75 | 76 | [Color7Faint] 77 | Color=250,250,250 78 | 79 | [Color7Intense] 80 | Color=250,250,250 81 | 82 | [Foreground] 83 | Color=56,58,66 84 | 85 | [ForegroundFaint] 86 | Color=56,58,66 87 | 88 | [ForegroundIntense] 89 | Color=56,58,66 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=One Half Light 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Peace-Harmony-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,240,241 3 | RandomHueRange=360 4 | RandomSaturationRange=100 5 | 6 | [BackgroundFaint] 7 | Color=72,78,80 8 | RandomHueRange=360 9 | RandomSaturationRange=100 10 | 11 | [BackgroundIntense] 12 | Color=35,38,39 13 | RandomHueRange=360 14 | RandomSaturationRange=100 15 | 16 | [Color0] 17 | Color=250,193,54 18 | 19 | [Color0Faint] 20 | Color=35,38,39 21 | 22 | [Color0Intense] 23 | Color=127,140,141 24 | 25 | [Color1] 26 | Color=63,158,255 27 | 28 | [Color1Faint] 29 | Color=90,128,138 30 | 31 | [Color1Intense] 32 | Color=255,85,127 33 | 34 | [Color2] 35 | Color=229,175,49 36 | 37 | [Color2Faint] 38 | Color=0,161,129 39 | 40 | [Color2Intense] 41 | Color=235,180,51 42 | 43 | [Color3] 44 | Color=199,152,43 45 | 46 | [Color3Faint] 47 | Color=153,102,76 48 | 49 | [Color3Intense] 50 | Color=253,188,75 51 | 52 | [Color4] 53 | Color=67,90,99 54 | 55 | [Color4Faint] 56 | Color=27,102,143 57 | 58 | [Color4Intense] 59 | Color=163,190,140 60 | 61 | [Color5] 62 | Color=255,85,0 63 | 64 | [Color5Faint] 65 | Color=163,125,194 66 | 67 | [Color5Intense] 68 | Color=0,159,114 69 | 70 | [Color6] 71 | Color=53,133,214 72 | 73 | [Color6Faint] 74 | Color=33,152,134 75 | 76 | [Color6Intense] 77 | Color=0,175,239 78 | 79 | [Color7] 80 | Color=67,90,99 81 | 82 | [Color7Faint] 83 | Color=211,218,227 84 | 85 | [Color7Intense] 86 | Color=136,192,208 87 | 88 | [Foreground] 89 | Color=35,38,39 90 | RandomHueRange=360 91 | RandomSaturationRange=100 92 | 93 | [ForegroundFaint] 94 | Color=48,53,54 95 | RandomHueRange=360 96 | RandomSaturationRange=100 97 | 98 | [ForegroundIntense] 99 | Color=63,158,255 100 | RandomHueRange=360 101 | RandomSaturationRange=100 102 | 103 | [General] 104 | Blur=true 105 | ColorRandomization=false 106 | Description=Peace-Harmony-Light-Konsole 107 | Opacity=1 108 | Wallpaper= 109 | -------------------------------------------------------------------------------- /.local/share/konsole/ProfLight.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=243,243,243 3 | 4 | [BackgroundFaint] 5 | Color=243,243,243 6 | 7 | [BackgroundIntense] 8 | Color=243,243,243 9 | 10 | [Color0] 11 | Color=64,64,64 12 | 13 | [Color0Faint] 14 | Color=192,192,192 15 | 16 | [Color0Intense] 17 | Color=122,122,122 18 | 19 | [Color1] 20 | Color=178,24,24 21 | 22 | [Color1Faint] 23 | Color=224,142,142 24 | 25 | [Color1Intense] 26 | Color=255,84,84 27 | 28 | [Color2] 29 | Color=18,140,116 30 | 31 | [Color2Faint] 32 | Color=142,224,142 33 | 34 | [Color2Intense] 35 | Color=59,170,115 36 | 37 | [Color3] 38 | Color=178,104,24 39 | 40 | [Color3Faint] 41 | Color=224,224,142 42 | 43 | [Color3Intense] 44 | Color=255,184,69 45 | 46 | [Color4] 47 | Color=24,24,178 48 | 49 | [Color4Faint] 50 | Color=142,142,224 51 | 52 | [Color4Intense] 53 | Color=84,84,255 54 | 55 | [Color5] 56 | Color=178,24,178 57 | 58 | [Color5Faint] 59 | Color=224,142,224 60 | 61 | [Color5Intense] 62 | Color=255,84,255 63 | 64 | [Color6] 65 | Color=18,133,133 66 | 67 | [Color6Faint] 68 | Color=142,224,224 69 | 70 | [Color6Intense] 71 | Color=67,204,204 72 | 73 | [Color7] 74 | Color=178,178,178 75 | 76 | [Color7Faint] 77 | Color=142,142,142 78 | 79 | [Color7Intense] 80 | Color=255,255,255 81 | 82 | [Foreground] 83 | Color=64,64,64 84 | 85 | [ForegroundFaint] 86 | Color=64,64,64 87 | 88 | [ForegroundIntense] 89 | Color=64,64,64 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Prof Light 95 | Opacity=0.96 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /.local/share/konsole/Relax-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,240,241 3 | RandomHueRange=360 4 | RandomSaturationRange=100 5 | 6 | [BackgroundFaint] 7 | Color=248,249,250 8 | RandomHueRange=360 9 | RandomSaturationRange=100 10 | 11 | [BackgroundIntense] 12 | Color=237,238,239 13 | RandomHueRange=360 14 | RandomSaturationRange=100 15 | 16 | [Color0] 17 | Color=35,38,39 18 | 19 | [Color0Faint] 20 | Color=36,42,59 21 | 22 | [Color0Intense] 23 | Color=47,54,76 24 | 25 | [Color1] 26 | Color=67,144,165 27 | 28 | [Color1Faint] 29 | Color=224,107,116 30 | 31 | [Color1Intense] 32 | Color=73,158,179 33 | 34 | [Color2] 35 | Color=0,170,127 36 | 37 | [Color2Faint] 38 | Color=0,170,127 39 | 40 | [Color2Intense] 41 | Color=72,154,177 42 | 43 | [Color3] 44 | Color=72,155,176 45 | 46 | [Color3Faint] 47 | Color=229,192,122 48 | 49 | [Color3Intense] 50 | Color=255,213,136 51 | 52 | [Color4] 53 | Color=0,136,204 54 | 55 | [Color4Faint] 56 | Color=0,193,142 57 | 58 | [Color4Intense] 59 | Color=0,149,109 60 | 61 | [Color5] 62 | Color=224,107,116 63 | 64 | [Color5Faint] 65 | Color=255,85,0 66 | 67 | [Color5Intense] 68 | Color=255,85,127 69 | 70 | [Color6] 71 | Color=0,170,255 72 | 73 | [Color6Faint] 74 | Color=79,161,238 75 | 76 | [Color6Intense] 77 | Color=71,141,212 78 | 79 | [Color7] 80 | Color=148,148,222 81 | 82 | [Color7Faint] 83 | Color=235,203,139 84 | 85 | [Color7Intense] 86 | Color=152,195,121 87 | 88 | [Foreground] 89 | Color=35,38,39 90 | RandomHueRange=360 91 | RandomSaturationRange=100 92 | 93 | [ForegroundFaint] 94 | Color=57,121,139 95 | RandomHueRange=360 96 | RandomSaturationRange=100 97 | 98 | [ForegroundIntense] 99 | Color=72,177,148 100 | RandomHueRange=360 101 | RandomSaturationRange=100 102 | 103 | [General] 104 | Blur=true 105 | ColorRandomization=false 106 | Description=Relax-Light-Konsole 107 | Opacity=1 108 | Wallpaper= 109 | -------------------------------------------------------------------------------- /.local/share/konsole/Toys-Light.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,239,239 3 | 4 | [BackgroundFaint] 5 | Color=239,239,239 6 | 7 | [BackgroundIntense] 8 | Color=239,239,239 9 | 10 | [Color0] 11 | Color=177,71,100 12 | 13 | [Color0Faint] 14 | Color=177,71,100 15 | 16 | [Color0Intense] 17 | Color=177,71,100 18 | 19 | [Color1] 20 | Color=120,158,161 21 | 22 | [Color1Faint] 23 | Color=120,158,161 24 | 25 | [Color1Intense] 26 | Color=120,158,161 27 | 28 | [Color2] 29 | Color=114,188,215 30 | 31 | [Color2Faint] 32 | Color=114,188,215 33 | 34 | [Color2Intense] 35 | Color=114,188,215 36 | 37 | [Color3] 38 | Color=212,179,78 39 | 40 | [Color3Faint] 41 | Color=212,179,78 42 | 43 | [Color3Intense] 44 | Color=212,179,78 45 | 46 | [Color4] 47 | Color=163,158,123 48 | 49 | [Color4Faint] 50 | Color=163,158,123 51 | 52 | [Color4Intense] 53 | Color=163,158,123 54 | 55 | [Color5] 56 | Color=125,161,185 57 | 58 | [Color5Faint] 59 | Color=125,161,185 60 | 61 | [Color5Intense] 62 | Color=125,161,185 63 | 64 | [Color6] 65 | Color=214,186,142 66 | 67 | [Color6Faint] 68 | Color=214,186,142 69 | 70 | [Color6Intense] 71 | Color=214,186,142 72 | 73 | [Color7] 74 | Color=128,149,157 75 | 76 | [Color7Faint] 77 | Color=128,149,157 78 | 79 | [Color7Intense] 80 | Color=128,149,157 81 | 82 | [Foreground] 83 | Color=158,100,86 84 | 85 | [ForegroundFaint] 86 | Color=158,100,86 87 | 88 | [ForegroundIntense] 89 | Color=158,100,86 90 | 91 | [General] 92 | Blur=true 93 | ColorRandomization=false 94 | Description=Toys-Light 95 | Opacity=1 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /.local/share/konsole/Uterly-Nord-Light-Solid-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=236,239,244 3 | 4 | [BackgroundFaint] 5 | Color=236,239,244 6 | 7 | [BackgroundIntense] 8 | Color=236,239,244 9 | 10 | [Color0] 11 | Color=67,76,94 12 | 13 | [Color0Faint] 14 | Color=76,86,106 15 | 16 | [Color0Intense] 17 | Color=67,76,94 18 | 19 | [Color1] 20 | Color=191,97,106 21 | 22 | [Color1Faint] 23 | Color=208,135,112 24 | 25 | [Color1Intense] 26 | Color=191,97,106 27 | 28 | [Color2] 29 | Color=163,190,140 30 | 31 | [Color2Faint] 32 | Color=163,190,140 33 | 34 | [Color2Intense] 35 | Color=163,190,140 36 | 37 | [Color3] 38 | Color=235,203,139 39 | 40 | [Color3Faint] 41 | Color=235,203,139 42 | 43 | [Color3Intense] 44 | Color=235,203,139 45 | 46 | [Color4] 47 | Color=94,129,172 48 | 49 | [Color4Faint] 50 | Color=143,188,187 51 | 52 | [Color4Intense] 53 | Color=94,129,172 54 | 55 | [Color5] 56 | Color=180,142,173 57 | 58 | [Color5Faint] 59 | Color=180,142,173 60 | 61 | [Color5Intense] 62 | Color=180,142,173 63 | 64 | [Color6] 65 | Color=129,161,193 66 | 67 | [Color6Faint] 68 | Color=136,192,208 69 | 70 | [Color6Intense] 71 | Color=129,161,193 72 | 73 | [Color7] 74 | Color=216,222,233 75 | 76 | [Color7Faint] 77 | Color=216,222,233 78 | 79 | [Color7Intense] 80 | Color=216,222,233 81 | 82 | [Foreground] 83 | Color=46,52,64 84 | 85 | [ForegroundFaint] 86 | Color=59,66,82 87 | 88 | [ForegroundIntense] 89 | Color=46,52,64 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Uterly-Nord-Light-Solid 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Utterly-Nord-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=236,239,244 3 | 4 | [BackgroundFaint] 5 | Color=236,239,244 6 | 7 | [BackgroundIntense] 8 | Color=236,239,244 9 | 10 | [Color0] 11 | Color=67,76,94 12 | 13 | [Color0Faint] 14 | Color=76,86,106 15 | 16 | [Color0Intense] 17 | Color=67,76,94 18 | 19 | [Color1] 20 | Color=191,97,106 21 | 22 | [Color1Faint] 23 | Color=208,135,112 24 | 25 | [Color1Intense] 26 | Color=191,97,106 27 | 28 | [Color2] 29 | Color=163,190,140 30 | 31 | [Color2Faint] 32 | Color=163,190,140 33 | 34 | [Color2Intense] 35 | Color=163,190,140 36 | 37 | [Color3] 38 | Color=235,203,139 39 | 40 | [Color3Faint] 41 | Color=235,203,139 42 | 43 | [Color3Intense] 44 | Color=235,203,139 45 | 46 | [Color4] 47 | Color=94,129,172 48 | 49 | [Color4Faint] 50 | Color=143,188,187 51 | 52 | [Color4Intense] 53 | Color=94,129,172 54 | 55 | [Color5] 56 | Color=180,142,173 57 | 58 | [Color5Faint] 59 | Color=180,142,173 60 | 61 | [Color5Intense] 62 | Color=180,142,173 63 | 64 | [Color6] 65 | Color=129,161,193 66 | 67 | [Color6Faint] 68 | Color=136,192,208 69 | 70 | [Color6Intense] 71 | Color=129,161,193 72 | 73 | [Color7] 74 | Color=216,222,233 75 | 76 | [Color7Faint] 77 | Color=216,222,233 78 | 79 | [Color7Intense] 80 | Color=216,222,233 81 | 82 | [Foreground] 83 | Color=46,52,64 84 | 85 | [ForegroundFaint] 86 | Color=59,66,82 87 | 88 | [ForegroundIntense] 89 | Color=46,52,64 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Utterly-Nord-Light 96 | FillStyle=Tile 97 | Opacity=0.6 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/Wings-Light-Konsole.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,240,241 3 | 4 | [BackgroundFaint] 5 | Color=247,248,249 6 | 7 | [BackgroundIntense] 8 | Color=229,230,231 9 | 10 | [Color0] 11 | Color=35,42,57 12 | 13 | [Color0Faint] 14 | Color=34,41,57 15 | 16 | [Color0Intense] 17 | Color=85,111,166 18 | 19 | [Color1] 20 | Color=255,85,127 21 | 22 | [Color1Faint] 23 | Color=163,54,82 24 | 25 | [Color1Intense] 26 | Color=218,73,109 27 | 28 | [Color2] 29 | Color=0,154,113 30 | 31 | [Color2Faint] 32 | Color=0,131,96 33 | 34 | [Color2Intense] 35 | Color=0,139,97 36 | 37 | [Color3] 38 | Color=0,170,255 39 | 40 | [Color3Faint] 41 | Color=0,110,165 42 | 43 | [Color3Intense] 44 | Color=0,137,205 45 | 46 | [Color4] 47 | Color=98,128,190 48 | 49 | [Color4Faint] 50 | Color=74,98,145 51 | 52 | [Color4Intense] 53 | Color=114,149,221 54 | 55 | [Color5] 56 | Color=159,106,159 57 | 58 | [Color5Faint] 59 | Color=181,121,181 60 | 61 | [Color5Intense] 62 | Color=185,123,185 63 | 64 | [Color6] 65 | Color=85,111,166 66 | 67 | [Color6Faint] 68 | Color=93,122,181 69 | 70 | [Color6Intense] 71 | Color=76,100,148 72 | 73 | [Color7] 74 | Color=252,252,252 75 | 76 | [Color7Faint] 77 | Color=99,104,109 78 | 79 | [Color7Intense] 80 | Color=255,255,255 81 | 82 | [Foreground] 83 | Color=30,36,49 84 | 85 | [ForegroundFaint] 86 | Color=44,53,72 87 | 88 | [ForegroundIntense] 89 | Color=0,170,255 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Wings-Light-Konsole 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/bookmarks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | pansy 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.local/share/konsole/bookmarks.xml.tbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pansy27/Dotfiles/c5ab4a298c7df8dc0dc07ca82bbf961e9113cd47/.local/share/konsole/bookmarks.xml.tbcache -------------------------------------------------------------------------------- /.local/share/konsole/cloud.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=0,0,0 3 | 4 | [BackgroundFaint] 5 | Color=0,0,0 6 | 7 | [BackgroundIntense] 8 | Color=0,0,0 9 | 10 | [Color0] 11 | Color=34,40,39 12 | 13 | [Color0Faint] 14 | Color=34,40,39 15 | 16 | [Color0Intense] 17 | Color=93,111,116 18 | 19 | [Color1] 20 | Color=213,168,227 21 | 22 | [Color1Faint] 23 | Color=213,168,227 24 | 25 | [Color1Intense] 26 | Color=205,116,156 27 | 28 | [Color2] 29 | Color=156,117,221 30 | 31 | [Color2Faint] 32 | Color=156,117,221 33 | 34 | [Color2Intense] 35 | Color=99,176,176 36 | 37 | [Color3] 38 | Color=152,152,174 39 | 40 | [Color3Faint] 41 | Color=152,152,174 42 | 43 | [Color3Intense] 44 | Color=192,192,221 45 | 46 | [Color4] 47 | Color=101,74,150 48 | 49 | [Color4Faint] 50 | Color=101,74,150 51 | 52 | [Color4Intense] 53 | Color=87,134,188 54 | 55 | [Color5] 56 | Color=98,85,102 57 | 58 | [Color5Faint] 59 | Color=98,85,102 60 | 61 | [Color5Intense] 62 | Color=63,52,66 63 | 64 | [Color6] 65 | Color=169,209,223 66 | 67 | [Color6Faint] 68 | Color=169,209,223 69 | 70 | [Color6Intense] 71 | Color=132,157,162 72 | 73 | [Color7] 74 | Color=230,235,229 75 | 76 | [Color7Faint] 77 | Color=230,235,229 78 | 79 | [Color7Intense] 80 | Color=217,214,207 81 | 82 | [Foreground] 83 | Color=255,255,255 84 | 85 | [ForegroundFaint] 86 | Color=255,255,255 87 | 88 | [ForegroundIntense] 89 | Color=255,255,255 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=cloud [terminal.love] 96 | FillStyle=Crop 97 | Opacity=0.85 98 | Wallpaper=/home/pansy/pictures/others/wallpapers/raiden/light/Konachan.com - 361912 2girls animal barefoot bikini braids breasts cleavage clouds crab drink foxgirl long_hair pink_hair sky sunglasses swimsuit towel tree wink yae_miko.png 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=0 101 | -------------------------------------------------------------------------------- /.local/share/konsole/github-light.colorscheme: -------------------------------------------------------------------------------- 1 | [General] 2 | Description=Github Light 3 | Opacity=1 4 | Wallpaper= 5 | 6 | [Background] 7 | Color=255,255,255 8 | 9 | [BackgroundFaint] 10 | Color=255,255,255 11 | 12 | [BackgroundIntense] 13 | Color=255,255,255 14 | 15 | [Color0] 16 | Color=36,41,47 17 | 18 | [Color0Faint] 19 | Color=87,96,106 20 | 21 | [Color0Intense] 22 | Color=87,96,106 23 | 24 | [Color1] 25 | Color=207,34,46 26 | 27 | [Color1Faint] 28 | Color=207,34,46 29 | 30 | [Color1Intense] 31 | Color=164,14,38 32 | 33 | [Color2] 34 | Color=17,99,41 35 | 36 | [Color2Faint] 37 | Color=17,99,41 38 | 39 | [Color2Intense] 40 | Color=26,127,55 41 | 42 | [Color3] 43 | Color=77,45,0 44 | 45 | [Color3Faint] 46 | Color=77,45,0 47 | 48 | [Color3Intense] 49 | Color=99,60,1 50 | 51 | [Color4] 52 | Color=9,105,218 53 | 54 | [Color4Faint] 55 | Color=9,105,218 56 | 57 | [Color4Intense] 58 | Color=33,139,255 59 | 60 | [Color5] 61 | Color=130,80,223 62 | 63 | [Color5Faint] 64 | Color=130,80,223 65 | 66 | [Color5Intense] 67 | Color=164,117,249 68 | 69 | [Color6] 70 | Color=27,124,131 71 | 72 | [Color6Faint] 73 | Color=27,124,131 74 | 75 | [Color6Intense] 76 | Color=49,146,170 77 | 78 | [Color7] 79 | Color=110,119,129 80 | 81 | [Color7Faint] 82 | Color=110,119,129 83 | 84 | [Color7Intense] 85 | Color=140,149,159 86 | 87 | [Foreground] 88 | Color=31,35,40 89 | 90 | [ForegroundFaint] 91 | Color=110,119,129 92 | 93 | [ForegroundIntense] 94 | Color=101,109,118 -------------------------------------------------------------------------------- /.local/share/konsole/iceberg-mine.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=244,245,248 3 | 4 | [BackgroundFaint] 5 | Color=232,233,236 6 | 7 | [BackgroundIntense] 8 | Color=232,233,236 9 | 10 | [Color0] 11 | Color=220,223,231 12 | 13 | [Color0Faint] 14 | Color=220,223,231 15 | 16 | [Color0Intense] 17 | Color=131,137,163 18 | 19 | [Color1] 20 | Color=204,81,122 21 | 22 | [Color1Faint] 23 | Color=204,81,122 24 | 25 | [Color1Intense] 26 | Color=204,55,104 27 | 28 | [Color2] 29 | Color=102,142,61 30 | 31 | [Color2Faint] 32 | Color=102,142,61 33 | 34 | [Color2Intense] 35 | Color=89,128,48 36 | 37 | [Color3] 38 | Color=197,115,57 39 | 40 | [Color3Faint] 41 | Color=197,115,57 42 | 43 | [Color3Intense] 44 | Color=182,102,45 45 | 46 | [Color4] 47 | Color=45,83,158 48 | 49 | [Color4Faint] 50 | Color=45,83,158 51 | 52 | [Color4Intense] 53 | Color=34,71,142 54 | 55 | [Color5] 56 | Color=119,89,180 57 | 58 | [Color5Faint] 59 | Color=119,89,180 60 | 61 | [Color5Intense] 62 | Color=104,69,173 63 | 64 | [Color6] 65 | Color=63,131,166 66 | 67 | [Color6Faint] 68 | Color=63,131,166 69 | 70 | [Color6Intense] 71 | Color=50,118,152 72 | 73 | [Color7] 74 | Color=51,55,76 75 | 76 | [Color7Faint] 77 | Color=51,55,76 78 | 79 | [Color7Intense] 80 | Color=38,42,63 81 | 82 | [Foreground] 83 | Color=51,55,76 84 | 85 | [ForegroundFaint] 86 | Color=51,55,76 87 | 88 | [ForegroundIntense] 89 | Color=51,55,76 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=Iceberg-mine 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/iceberg.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=232,233,236 3 | 4 | [BackgroundFaint] 5 | Color=232,233,236 6 | 7 | [BackgroundIntense] 8 | Color=232,233,236 9 | 10 | [Color0] 11 | Color=220,223,231 12 | 13 | [Color0Faint] 14 | Color=220,223,231 15 | 16 | [Color0Intense] 17 | Color=131,137,163 18 | 19 | [Color1] 20 | Color=204,81,122 21 | 22 | [Color1Faint] 23 | Color=204,81,122 24 | 25 | [Color1Intense] 26 | Color=204,55,104 27 | 28 | [Color2] 29 | Color=102,142,61 30 | 31 | [Color2Faint] 32 | Color=102,142,61 33 | 34 | [Color2Intense] 35 | Color=89,128,48 36 | 37 | [Color3] 38 | Color=197,115,57 39 | 40 | [Color3Faint] 41 | Color=197,115,57 42 | 43 | [Color3Intense] 44 | Color=182,102,45 45 | 46 | [Color4] 47 | Color=45,83,158 48 | 49 | [Color4Faint] 50 | Color=45,83,158 51 | 52 | [Color4Intense] 53 | Color=34,71,142 54 | 55 | [Color5] 56 | Color=119,89,180 57 | 58 | [Color5Faint] 59 | Color=119,89,180 60 | 61 | [Color5Intense] 62 | Color=104,69,173 63 | 64 | [Color6] 65 | Color=63,131,166 66 | 67 | [Color6Faint] 68 | Color=63,131,166 69 | 70 | [Color6Intense] 71 | Color=50,118,152 72 | 73 | [Color7] 74 | Color=51,55,76 75 | 76 | [Color7Faint] 77 | Color=51,55,76 78 | 79 | [Color7Intense] 80 | Color=38,42,63 81 | 82 | [Foreground] 83 | Color=51,55,76 84 | 85 | [ForegroundFaint] 86 | Color=51,55,76 87 | 88 | [ForegroundIntense] 89 | Color=51,55,76 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=Iceberg 96 | FillStyle=Tile 97 | Opacity=1 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/lily.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=43,40,57 3 | 4 | [BackgroundFaint] 5 | Color=43,40,57 6 | 7 | [BackgroundIntense] 8 | Color=43,40,57 9 | 10 | [Color0] 11 | Color=43,40,57 12 | 13 | [Color0Faint] 14 | Color=43,40,57 15 | 16 | [Color0Intense] 17 | Color=157,151,191 18 | 19 | [Color1] 20 | Color=215,117,125 21 | 22 | [Color1Faint] 23 | Color=215,117,125 24 | 25 | [Color1Intense] 26 | Color=239,200,203 27 | 28 | [Color2] 29 | Color=151,186,163 30 | 31 | [Color2Faint] 32 | Color=151,186,163 33 | 34 | [Color2Intense] 35 | Color=213,227,218 36 | 37 | [Color3] 38 | Color=192,164,150 39 | 40 | [Color3Faint] 41 | Color=192,164,150 42 | 43 | [Color3Intense] 44 | Color=230,220,214 45 | 46 | [Color4] 47 | Color=146,173,227 48 | 49 | [Color4Faint] 50 | Color=146,173,227 51 | 52 | [Color4Intense] 53 | Color=211,222,244 54 | 55 | [Color5] 56 | Color=171,133,209 57 | 58 | [Color5Faint] 59 | Color=171,133,209 60 | 61 | [Color5Intense] 62 | Color=221,206,236 63 | 64 | [Color6] 65 | Color=194,142,190 66 | 67 | [Color6Faint] 68 | Color=194,142,190 69 | 70 | [Color6Intense] 71 | Color=230,209,228 72 | 73 | [Color7] 74 | Color=213,209,235 75 | 76 | [Color7Faint] 77 | Color=213,209,235 78 | 79 | [Color7Intense] 80 | Color=238,237,247 81 | 82 | [Foreground] 83 | Color=213,209,235 84 | 85 | [ForegroundFaint] 86 | Color=213,209,235 87 | 88 | [ForegroundIntense] 89 | Color=213,209,235 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=true 94 | ColorRandomization=false 95 | Description=Lily 96 | FillStyle=Tile 97 | Opacity=0.85 98 | Wallpaper= 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=1 101 | -------------------------------------------------------------------------------- /.local/share/konsole/matugen.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=252,255,248 3 | 4 | [BackgroundFaint] 5 | Color=0,0,0 6 | 7 | [BackgroundIntense] 8 | Color=0,0,0 9 | 10 | [Color0] 11 | Color=24,24,24 12 | 13 | [Color0Faint] 14 | Color=34,40,39 15 | 16 | [Color0Intense] 17 | Color=88,91,112 18 | 19 | [Color1] 20 | Color=186,26,26 21 | 22 | [Color1Faint] 23 | Color=213,168,227 24 | 25 | [Color1Intense] 26 | Color=243,139,168 27 | 28 | [Color2] 29 | Color=87,146,89 30 | 31 | [Color2Faint] 32 | Color=156,117,221 33 | 34 | [Color2Intense] 35 | Color=166,227,161 36 | 37 | [Color3] 38 | Color=192,255,193 39 | 40 | [Color3Faint] 41 | Color=152,152,174 42 | 43 | [Color3Intense] 44 | Color=249,226,175 45 | 46 | [Color4] 47 | Color=87,146,89 48 | 49 | [Color4Faint] 50 | Color=101,74,150 51 | 52 | [Color4Intense] 53 | Color=137,180,250 54 | 55 | [Color5] 56 | Color=121,106,83 57 | 58 | [Color5Faint] 59 | Color=98,85,102 60 | 61 | [Color5Intense] 62 | Color=245,194,231 63 | 64 | [Color6] 65 | Color=93,114,93 66 | 67 | [Color6Faint] 68 | Color=169,209,223 69 | 70 | [Color6Intense] 71 | Color=148,226,213 72 | 73 | [Color7] 74 | Color=186,194,222 75 | 76 | [Color7Faint] 77 | Color=230,235,229 78 | 79 | [Color7Intense] 80 | Color=166,173,200 81 | 82 | [Foreground] 83 | Color=27,33,27 84 | 85 | [ForegroundFaint] 86 | Color=255,255,255 87 | 88 | [ForegroundIntense] 89 | Color=255,255,255 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=matugen 96 | FillStyle=Crop 97 | Opacity=1 98 | -------------------------------------------------------------------------------- /.local/share/konsole/mine.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=249,251,255 3 | 4 | [BackgroundFaint] 5 | Color=0,0,0 6 | 7 | [BackgroundIntense] 8 | Color=0,0,0 9 | 10 | [Color0] 11 | Color=34,40,39 12 | 13 | [Color0Faint] 14 | Color=34,40,39 15 | 16 | [Color0Intense] 17 | Color=93,111,116 18 | 19 | [Color1] 20 | Color=213,168,227 21 | 22 | [Color1Faint] 23 | Color=213,168,227 24 | 25 | [Color1Intense] 26 | Color=205,116,156 27 | 28 | [Color2] 29 | Color=156,117,221 30 | 31 | [Color2Faint] 32 | Color=156,117,221 33 | 34 | [Color2Intense] 35 | Color=99,176,176 36 | 37 | [Color3] 38 | Color=152,152,174 39 | 40 | [Color3Faint] 41 | Color=152,152,174 42 | 43 | [Color3Intense] 44 | Color=192,192,221 45 | 46 | [Color4] 47 | Color=101,74,150 48 | 49 | [Color4Faint] 50 | Color=101,74,150 51 | 52 | [Color4Intense] 53 | Color=87,134,188 54 | 55 | [Color5] 56 | Color=98,85,102 57 | 58 | [Color5Faint] 59 | Color=98,85,102 60 | 61 | [Color5Intense] 62 | Color=63,52,66 63 | 64 | [Color6] 65 | Color=169,209,223 66 | 67 | [Color6Faint] 68 | Color=169,209,223 69 | 70 | [Color6Intense] 71 | Color=132,157,162 72 | 73 | [Color7] 74 | Color=230,235,229 75 | 76 | [Color7Faint] 77 | Color=230,235,229 78 | 79 | [Color7Intense] 80 | Color=217,214,207 81 | 82 | [Foreground] 83 | Color=50,50,50 84 | 85 | [ForegroundFaint] 86 | Color=50,50,50 87 | 88 | [ForegroundIntense] 89 | Color=50,50,50 90 | 91 | [General] 92 | Anchor=0.5,0.5 93 | Blur=false 94 | ColorRandomization=false 95 | Description=mine 96 | FillStyle=Crop 97 | Opacity=1 98 | Wallpaper=/home/pansy/pictures/others/wallpapers/raiden/light/Konachan.com - 361912 2girls animal barefoot bikini braids breasts cleavage clouds crab drink foxgirl long_hair pink_hair sky sunglasses swimsuit towel tree wink yae_miko.png 99 | WallpaperFlipType=NoFlip 100 | WallpaperOpacity=0 101 | -------------------------------------------------------------------------------- /.local/share/konsole/pansy.profile: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | ColorScheme=iceberg-mine 3 | Font=Cascadia Code,10.5,-1,5,316,0,0,0,0,0,0,0,0,0,0,1,SemiLight 4 | LineSpacing=1 5 | 6 | [General] 7 | Command=/usr/bin/fish 8 | Name=pansy 9 | Parent=FALLBACK/ 10 | TerminalMargin=10 11 | -------------------------------------------------------------------------------- /.local/share/konsole/rose-pine-dawn.colorscheme: -------------------------------------------------------------------------------- 1 | # --- special colors --- 2 | 3 | [Background] 4 | Color=250,244,237 5 | 6 | [BackgroundIntense] 7 | Color=250,244,237 8 | 9 | [Foreground] 10 | Color=87,82,121 11 | 12 | [ForegroundIntense] 13 | Color=87,82,121 14 | Bold=true 15 | 16 | # --- standard colors --- 17 | 18 | # black 19 | [Color0] 20 | Color=242,233,222 21 | 22 | [Color0Intense] 23 | Color=152,147,165 24 | 25 | # red 26 | [Color1] 27 | Color=180,99,122 28 | 29 | [Color1Intense] 30 | Color=180,99,122 31 | 32 | # green 33 | [Color2] 34 | Color=40,105,131 35 | 36 | [Color2Intense] 37 | Color=40,105,131 38 | 39 | # yellow 40 | [Color3] 41 | Color=234,157,52 42 | 43 | [Color3Intense] 44 | Color=234,157,52 45 | 46 | # blue 47 | [Color4] 48 | Color=86,148,159 49 | 50 | [Color4Intense] 51 | Color=86,148,159 52 | 53 | # magenta 54 | [Color5] 55 | Color=144,122,169 56 | 57 | [Color5Intense] 58 | Color=144,122,169 59 | 60 | # cyan 61 | [Color6] 62 | Color=215,130,126 63 | 64 | [Color6Intense] 65 | Color=215,130,126 66 | 67 | # white 68 | [Color7] 69 | Color=87,82,121 70 | 71 | [Color7Intense] 72 | Color=87,82,121 73 | 74 | # --- general options --- 75 | 76 | [General] 77 | Description=Rosé Pine Dawn – All natural pine, faux fur and a bit of soho vibes for the classy minimalist 78 | Opacity=1 79 | -------------------------------------------------------------------------------- /bin/auto-wm.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then 3 | exec sway 4 | fi 5 | -------------------------------------------------------------------------------- /bin/autostart.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | exec waybar & 4 | exec copyq & 5 | exec wlsunset -t 4500 -s 18:30 -S 06:30 & 6 | exec nm-applet & 7 | exec /usr/bin/lxqt-policykit-agent & 8 | # exec swayidle -w \ 9 | # timeout 300 'lock.sh' \ 10 | # timeout 600 'systemctl sleep' \ 11 | # # resume 'swaymsg "output * power on"' \ 12 | # before-sleep 'lock.sh' \ 13 | # lock 'lock.sh' 14 | -------------------------------------------------------------------------------- /bin/lock.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | playerctl -a pause & 4 | # swaylock -i ~/.cache/lockscreen \ 5 | # --inside-color "#f8929a00" \ 6 | # --inside-clear-color "#f8929a00" \ 7 | # --inside-wrong-color "#f8929a40" \ 8 | # --ring-color "#d1beef" --key-hl-color "#f8929a" 9 | gtklock -d 10 | -------------------------------------------------------------------------------- /bin/rofi-powermenu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | uptime="$(uptime -p | sed -e 's/up //g')" 4 | 5 | # Options 6 | shutdown=' Shutdown' 7 | reboot=' Reboot' 8 | lock=' Lock' 9 | logout=' 󰗽 Logout' 10 | yes=' 󰄬 Yes' 11 | no=' No' 12 | 13 | # -theme-str 'entry { background-color: transparent; placeholder-color: transparent; text-color: transparent; }' \ 14 | # Rofi CMD 15 | rofi_cmd() { 16 | rofi -dmenu \ 17 | -markup-rows \ 18 | -no-show-icons \ 19 | -theme-str 'entry { placeholder: "$uptime"; }' 20 | } 21 | 22 | # Confirmation CMD 23 | confirm_cmd() { 24 | rofi -dmenu \ 25 | -markup-rows \ 26 | -no-show-icons \ 27 | -theme-str 'entry { placeholder: "Are you Sure?"; text-color: transparent; }' \ 28 | -p 'Confirmation' \ 29 | -mesg 'Are you Sure?' 30 | } 31 | 32 | # Ask for confirmation 33 | confirm_exit() { 34 | echo -e "$yes\n$no" | confirm_cmd 35 | } 36 | 37 | # Pass variables to rofi dmenu 38 | run_rofi() { 39 | echo -e "$lock\n$logout\n$reboot\n$shutdown" | rofi_cmd 40 | } 41 | 42 | # Execute Command 43 | run_cmd() { 44 | selected="$(confirm_exit)" 45 | if [[ "$selected" == "$yes" ]]; then 46 | if [[ $1 == '--shutdown' ]]; then 47 | poweroff 48 | elif [[ $1 == '--reboot' ]]; then 49 | reboot 50 | elif [[ $1 == '--logout' ]]; then 51 | swaymsg exit 52 | fi 53 | else 54 | exit 0 55 | fi 56 | } 57 | 58 | # Actions 59 | chosen="$(run_rofi)" 60 | case ${chosen} in 61 | "$shutdown") 62 | run_cmd --shutdown 63 | ;; 64 | "$reboot") 65 | run_cmd --reboot 66 | ;; 67 | "$lock") 68 | lock.sh 69 | ;; 70 | "$logout") 71 | run_cmd --logout 72 | ;; 73 | esac 74 | -------------------------------------------------------------------------------- /bin/rofi-screenshot.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Options 4 | delay=' 󱑏 Delay' 5 | full=' 󰹑 Full' 6 | selection=' 󰩭 Selection' 7 | selection_delay=' 󱫗 Delay (5 secs)' 8 | 9 | # -theme-str 'entry { background-color: transparent; placeholder-color: transparent; text-color: transparent; }' \ 10 | # Rofi CMD 11 | rofi_cmd() { 12 | rofi -dmenu \ 13 | -markup-rows \ 14 | -no-show-icons \ 15 | -theme-str 'entry { placeholder: "Capture!"; text-color: transparent; }' 16 | } 17 | 18 | # Pass variables to rofi dmenu 19 | run_rofi() { 20 | echo -e "$full\n$selection\n$delay\n$selection_delay" | rofi_cmd 21 | } 22 | 23 | # Actions 24 | chosen="$(run_rofi)" 25 | case ${chosen} in 26 | "$full") 27 | screenshot.sh full 28 | ;; 29 | "$selection") 30 | screenshot.sh selection 31 | ;; 32 | "$delay") 33 | screenshot.sh delay 34 | ;; 35 | "$selection_delay") 36 | screenshot.sh selection_delay 37 | ;; 38 | esac 39 | -------------------------------------------------------------------------------- /bin/screenshot.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mode="$1" 4 | delay=5 5 | fileName="$(date +"%Y%m%d_%H%M%S").png" 6 | savePath="$HOME/pictures/captures" 7 | 8 | case $mode in 9 | "selection") 10 | sleep 0.5 && slurp | grim -g - $savePath/$fileName || { notify-send "Screenshot not taken!" -t 1500; exit 0; } 11 | copyq write image/png - < $savePath/$fileName && notify-send "Screenshot taken!" -t 1500 12 | ;; 13 | "selection_delay") 14 | notify-send "Taking Screenshot in 5 Sec!" -t 2000 15 | sleep $delay && slurp | grim -g - $savePath/$fileName || { notify-send "Screenshot not taken!" -t 1500; exit 0; } 16 | copyq write image/png - < $savePath/$fileName && notify-send "Screenshot taken!" -t 1500 17 | ;; 18 | "full") 19 | sleep 0.5 && grim $savePath/$fileName || { notify-send "Screenshot not taken!" -t 1500; exit 0; } 20 | copyq write image/png - < $savePath/$fileName && notify-send "Screenshot taken!" -t 1500 21 | ;; 22 | "delay") 23 | notify-send "Taking Screenshot in 5 Sec!" -t 2000 24 | sleep $delay && grim $savePath/$fileName || { notify-send "Screenshot not taken!" -t 1500; exit 0; } 25 | copyq write image/png - < $savePath/$fileName && notify-send "Screenshot taken!" -t 1500 26 | ;; 27 | *) 28 | exit 1 29 | esac 30 | 31 | -------------------------------------------------------------------------------- /bin/wallpaper.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | file="$1" 4 | mode="$2" 5 | blur=3 6 | wallPath="$HOME/.cache/wallpaper" 7 | wallLockPath="$HOME/.cache/lockscreen" 8 | resolution=(1366 768) 9 | 10 | case $mode in 11 | "normal") 12 | rm $wallPath 13 | ln -s "$file" $wallPath || { notify-send "Error setting wallpaper!"; exit 0; } 14 | # swaymsg output * bg "$wallPath" fill 15 | swaymsg output "*" bg $wallPath fill 16 | ;; 17 | "blur") 18 | rm $wallPath 19 | magick -gravity center \ 20 | \( "$file" -resize ${resolution[0]}x${resolution[1]}^ -extent ${resolution[0]}x${resolution[1]} -blur 0x$blur \) \ 21 | \( "$file" -resize ${resolution[0]}x${resolution[1]} \) -composite \ 22 | $wallPath 23 | swaymsg output "*" bg $wallPath fill && notify-send "Wallpaper set :)" 24 | ;; 25 | "top") 26 | rm $wallPath 27 | magick "$file" -resize ${resolution[0]}x${resolution[1]}^ -gravity north -extent ${resolution[0]}x${resolution[1]} $wallPath 28 | swaymsg output "*" bg $wallPath fill && notify-send "Wallpaper set :)" 29 | ;; 30 | "lockscreen") 31 | rm $wallLockPath 32 | ln -s "$file" $wallLockPath || { notify-send "Error setting wallpaper!"; exit 0; } 33 | ;; 34 | *) 35 | notify-send "fallback case" 36 | ;; 37 | esac 38 | 39 | # generate cool colors 40 | matugen -m light image ~/.cache/wallpaper 41 | --------------------------------------------------------------------------------