Compare commits
34 Commits
Author | SHA1 | Date |
---|---|---|
Dor dicke Gind | ae5f7d584e | 1 month ago |
Dor dicke Gind | dde8caa45d | 1 month ago |
drdickgind | ce088c0e29 | 6 months ago |
drdickgind | d33ed9f62c | 6 months ago |
drdickgind | 8dabd7919b | 6 months ago |
Dor dicke Gind | 2eff7549c9 | 6 months ago |
Dor dicke Gind | 48d967e7cb | 6 months ago |
Dor dicke Gind | 6f569f9b6e | 6 months ago |
DorGind | 510a16e673 | 8 months ago |
Dor dicke Gind | f819497aec | 8 months ago |
DorGind | ea89c8c119 | 8 months ago |
Dor dicke Gind | b36c87acb1 | 8 months ago |
Dor dicke Gind | b960f1903a | 8 months ago |
Dor dicke Gind | cce39b9ad4 | 8 months ago |
Dor dicke Gind | ae183c5f69 | 8 months ago |
Dor dicke Gind | bc189db492 | 8 months ago |
Dor dicke Gind | b3ebadfa0e | 8 months ago |
DorGind | 00d0f43ab2 | 8 months ago |
Dor dicke Gind | 687fd34c12 | 8 months ago |
Dor dicke Gind | e231c9986c | 8 months ago |
Dor dicke Gind | 88fa5a4063 | 8 months ago |
Dor dicke Gind | e67fcad365 | 8 months ago |
Dor dicke Gind | 1cc5b0b88d | 8 months ago |
Dor dicke Gind | ca999cbb9e | 12 months ago |
Dor dicke Gind | 6d9079cddf | 12 months ago |
Dor dicke Gind | 2a287b1ccc | 12 months ago |
Dor dicke Gind | 015d4f34c3 | 1 year ago |
Dor dicke Gind | 231a7b458e | 1 year ago |
Dor dicke Gind | b84ee4da8e | 1 year ago |
Dor dicke Gind | 74a2eb5aaa | 1 year ago |
Dor dicke Gind | 0ad07054fb | 1 year ago |
Dor dicke Gind | a48dcb4a0f | 1 year ago |
Dor dicke Gind | f59c24936e | 2 years ago |
drdickgind | b5b2d17f2c | 2 years ago |
76 changed files with 2779 additions and 898 deletions
@ -1,78 +1,360 @@
|
||||
################### File Generated by GOverlay ################### |
||||
fps_limit=60,30,120,0 |
||||
toggle_fps_limit=Shift_L+F1 |
||||
# 0 = Adaptive VSync (FIFO_RELAXED_KHR) |
||||
# 1 = Off (IMMEDIATE_KHR) |
||||
# 2 = Mailbox (VSync with uncapped FPS) (MAILBOX_KHR) |
||||
# 3 = On (FIFO_KHR) |
||||
vsync=3 |
||||
# -1 = Adaptive sync |
||||
# 0 = Off |
||||
# 1 = On |
||||
# n = Sync to refresh rate / n. |
||||
gl_vsync=-1 |
||||
legacy_layout=false |
||||
### MangoHud configuration file |
||||
### Uncomment any options you wish to enable. Default options are left uncommented |
||||
### Use some_parameter=0 to disable a parameter (only works with on/off parameters) |
||||
### Everything below can be used / overridden with the environment variable MANGOHUD_CONFIG instead |
||||
|
||||
################ INFORMATIONAL ################# |
||||
## prints possible options on stdout |
||||
# help |
||||
|
||||
################ PERFORMANCE ################# |
||||
|
||||
### Limit the application FPS. Comma-separated list of one or more FPS values (e.g. 0,30,60). 0 means unlimited (unless VSynced) |
||||
fps_limit=60,120,0,30,10 |
||||
|
||||
### early = wait before present, late = wait after present |
||||
# fps_limit_method= |
||||
|
||||
### VSync [0-3] 0 = adaptive; 1 = off; 2 = mailbox; 3 = on |
||||
# vsync=-1 |
||||
|
||||
### OpenGL VSync [0-N] 0 = off; >=1 = wait for N v-blanks, N > 1 acts as a FPS limiter (FPS = display refresh rate / N) |
||||
# gl_vsync=-2 |
||||
|
||||
### Mip-map LoD bias. Negative values will increase texture sharpness (and aliasing) |
||||
## Positive values will increase texture blurriness (-16 to 16) |
||||
# picmip=-17 |
||||
|
||||
### Anisotropic filtering level. Improves sharpness of textures viewed at an angle (0 to 16) |
||||
# af=-1 |
||||
|
||||
### Force bicubic filtering |
||||
# bicubic |
||||
|
||||
### Force trilinear filtering |
||||
# trilinear |
||||
|
||||
### Disable linear texture filtering. Makes textures look blocky |
||||
# retro |
||||
|
||||
################### VISUAL ################### |
||||
|
||||
### Legacy layout |
||||
# legacy_layout=0 |
||||
|
||||
### pre defined presets |
||||
# -1 = default |
||||
# 0 = no display |
||||
# 1 = fps only |
||||
# 2 = horizontal view |
||||
# 3 = extended |
||||
# 4 = high detailed information |
||||
# preset=-1 |
||||
|
||||
### Enable most of the toggleable parameters (currently excludes `histogram`) |
||||
# full |
||||
|
||||
### Show FPS only. ***Not meant to be used with other display params*** |
||||
# fps_only |
||||
|
||||
### Display custom centered text, useful for a header |
||||
# custom_text_center= |
||||
|
||||
### Display the current system time |
||||
time |
||||
## removes the time label |
||||
time_no_label |
||||
|
||||
### Time formatting examples |
||||
## %H:%M |
||||
## [ %T %F ] |
||||
## %X # locally formatted time, because of limited glyph range, missing characters may show as '?' (e.g. Japanese) |
||||
# time_format="%T" |
||||
|
||||
### Display MangoHud version |
||||
# version |
||||
|
||||
### Display the current GPU information |
||||
## Note: gpu_mem_clock and gpu_mem_temp also need "vram" to be enabled |
||||
gpu_stats |
||||
gpu_temp |
||||
gpu_core_clock |
||||
gpu_mem_clock |
||||
gpu_power |
||||
gpu_load_change |
||||
gpu_load_value=50,90 |
||||
gpu_load_color=FFFFFF,FFAA7F,CC0000 |
||||
gpu_text=RX6800 |
||||
gpu_color=EB5B5B |
||||
vram |
||||
vram_color=EB5B5B |
||||
gpu_temp |
||||
# gpu_junction_temp |
||||
gpu_core_clock |
||||
# gpu_mem_temp |
||||
gpu_mem_clock |
||||
gpu_power |
||||
gpu_text= RX 6800 |
||||
# gpu_load_change |
||||
# gpu_load_value=60,90 |
||||
# gpu_load_color=39F900,FDFD09,B22222 |
||||
## GPU fan in rpm on AMD, FAN in percent on NVIDIA |
||||
gpu_fan |
||||
## gpu_voltage only works on AMD GPUs |
||||
gpu_voltage |
||||
|
||||
### Display the current CPU information |
||||
cpu_stats |
||||
cpu_temp |
||||
cpu_power |
||||
cpu_mhz |
||||
cpu_load_change |
||||
core_load_change |
||||
cpu_load_value=50,90 |
||||
cpu_load_color=FFFFFF,FFAA7F,CC0000 |
||||
cpu_color=91A948 |
||||
cpu_text=3700X |
||||
ram |
||||
ram_color=91A948 |
||||
io_stats |
||||
io_read |
||||
io_write |
||||
io_color=A491D3 |
||||
swap |
||||
cpu_temp |
||||
cpu_power |
||||
cpu_text=5700X3D |
||||
cpu_mhz |
||||
# cpu_load_change |
||||
# cpu_load_value=60,90 |
||||
# cpu_load_color=39F900,FDFD09,B22222 |
||||
|
||||
### Display the current CPU load & frequency for each core |
||||
# core_load |
||||
# core_load_change |
||||
|
||||
### Display IO read and write for the app (not system) |
||||
io_read |
||||
io_write |
||||
|
||||
### Display system vram / ram / swap space usage |
||||
vram |
||||
ram |
||||
swap |
||||
|
||||
### Display per process memory usage |
||||
## Show resident memory and other types, if enabled |
||||
# procmem |
||||
# procmem_shared |
||||
# procmem_virt |
||||
|
||||
### Display battery information |
||||
# battery |
||||
# battery_icon |
||||
device_battery=gamepad,mouse |
||||
device_battery_icon |
||||
# battery_watt |
||||
# battery_time |
||||
|
||||
### Display FPS and frametime |
||||
fps |
||||
engine_version |
||||
engine_color=EB5B5B |
||||
gpu_name |
||||
vulkan_driver |
||||
arch |
||||
wine |
||||
wine_color=EB5B5B |
||||
frame_timing=1 |
||||
frametime_color=00FF00 |
||||
# fps_sampling_period=500 |
||||
# fps_color_change |
||||
# fps_value=30,60 |
||||
# fps_color=B22222,FDFD09,39F900 |
||||
frametime |
||||
# frame_count |
||||
## fps_metrics takes a list of decimal values or the value avg |
||||
# fps_metrics=avg,0.01 |
||||
|
||||
### Display GPU throttling status based on Power, current, temp or "other" |
||||
## Only shows if throttling is currently happening |
||||
throttling_status |
||||
show_fps_limit |
||||
resolution |
||||
vkbasalt |
||||
gamemode |
||||
gamepad_battery |
||||
media_player_color=FFFFFF |
||||
custom_text=GPU Voltage |
||||
custom_text_color=EB5B5B |
||||
exec=cat /sys/class/hwmon/hwmon3/in0_input |
||||
time |
||||
## Same as throttling_status but displays throttling on the frametime graph |
||||
#throttling_status_graph |
||||
|
||||
### Display miscellaneous information |
||||
engine_version |
||||
engine_short_names |
||||
gpu_name |
||||
vulkan_driver |
||||
wine |
||||
exec_name |
||||
winesync |
||||
|
||||
### Display loaded MangoHud architecture |
||||
arch |
||||
|
||||
### Display the frametime line graph |
||||
frame_timing |
||||
# histogram |
||||
|
||||
### Display GameMode / vkBasalt running status |
||||
gamemode |
||||
vkbasalt |
||||
|
||||
### Gamescope related options |
||||
## Display the status of FSR (only works in gamescope) |
||||
fsr |
||||
## Hides the sharpness info for the `fsr` option (only available in gamescope) |
||||
# hide_fsr_sharpness |
||||
## Shows the graph of gamescope app frametimes and latency (only on gamescope obviously) |
||||
# debug |
||||
## Display the status of HDR (only works in gamescope) |
||||
# hdr |
||||
## Display the current refresh rate (only works in gamescope) |
||||
# refresh_rate |
||||
|
||||
|
||||
### graphs displays one or more graphs that you chose |
||||
## seperated by ",", available graphs are |
||||
## gpu_load,cpu_load,gpu_core_clock,gpu_mem_clock,vram,ram,cpu_temp,gpu_temp |
||||
# graphs= |
||||
|
||||
### mangoapp related options |
||||
## Enables mangoapp to be displayed above the Steam UI |
||||
# mangoapp_steam |
||||
|
||||
### Steam Deck options |
||||
## Shows the Steam Deck fan rpm |
||||
# fan |
||||
|
||||
### Display current FPS limit |
||||
show_fps_limit |
||||
|
||||
### Display the current resolution |
||||
resolution |
||||
|
||||
### Display custom text |
||||
# custom_text= |
||||
### Display output of Bash command in next column |
||||
# exec= |
||||
|
||||
### Display media player metadata |
||||
# media_player |
||||
## for example spotify |
||||
# media_player_name= |
||||
## Format metadata, lines are delimited by ; (wip) |
||||
## example: {title};{artist};{album} |
||||
## example: Track:;{title};By:;{artist};From:;{album} |
||||
# media_player_format=title,artist,album |
||||
|
||||
### Network interface throughput |
||||
network |
||||
## Network can take arguments but it's not required. |
||||
## without arguments it shows all interfaces |
||||
## arguments set which interfaces will be displayed |
||||
# network=eth0,wlo1 |
||||
|
||||
|
||||
### Change the hud font size |
||||
# font_size=24 |
||||
# font_scale=1.0 |
||||
# font_size_text=24 |
||||
# font_scale_media_player=0.55 |
||||
# no_small_font |
||||
|
||||
### Change default font (set location to TTF/OTF file) |
||||
## Set font for the whole hud |
||||
# font_file= |
||||
|
||||
## Set font only for text like media player metadata |
||||
# font_file_text= |
||||
|
||||
## Set font glyph ranges. Defaults to Latin-only. Don't forget to set font_file/font_file_text to font that supports these |
||||
## Probably don't enable all at once because of memory usage and hardware limits concerns |
||||
## If you experience crashes or text is just squares, reduce glyph range or reduce font size |
||||
# font_glyph_ranges=korean,chinese,chinese_simplified,japanese,cyrillic,thai,vietnamese,latin_ext_a,latin_ext_b |
||||
|
||||
### Outline text |
||||
text_outline |
||||
# text_outline_color = 000000 |
||||
# text_outline_thickness = 1.5 |
||||
|
||||
### Change the hud position |
||||
# position=top-left |
||||
|
||||
### Change the corner roundness |
||||
# round_corners=0 |
||||
|
||||
### Remove margins around MangoHud |
||||
# hud_no_margin |
||||
|
||||
### Display compact version of MangoHud |
||||
# hud_compact |
||||
|
||||
### Display MangoHud in a horizontal position |
||||
# horizontal |
||||
# horizontal_stretch |
||||
|
||||
### Disable / hide the hud by default |
||||
no_display |
||||
background_alpha=0.4 |
||||
font_size=24 |
||||
|
||||
background_color=020202 |
||||
position=top-left |
||||
text_color=FFFFFF |
||||
round_corners=10 |
||||
#GOVERLAY_THEME=mangohuddefault |
||||
toggle_hud=Shift_R+F12 |
||||
toggle_logging=Shift_L+F2 |
||||
upload_log=F5 |
||||
output_folder=/home/alex |
||||
media_player_name=spotify |
||||
|
||||
### Hud position offset |
||||
# offset_x=0 |
||||
# offset_y=0 |
||||
|
||||
### Hud dimensions |
||||
# width=0 |
||||
# height=140 |
||||
# table_columns=3 |
||||
# cellpadding_y=-0.085 |
||||
|
||||
### Hud transparency / alpha |
||||
# background_alpha=0.5 |
||||
# alpha=1.0 |
||||
|
||||
### FCAT overlay |
||||
### This enables an FCAT overlay to perform frametime analysis on the final image stream. |
||||
### Enable the overlay |
||||
# fcat |
||||
### Set the width of the FCAT overlay. |
||||
### 24 is a performance optimization on AMD GPUs that should not have adverse effects on nVidia GPUs. |
||||
### A minimum of 20 pixels is recommended by nVidia. |
||||
# fcat_overlay_width=24 |
||||
### Set the screen edge, this can be useful for special displays that don't update from top edge to bottom. This goes from 0 (left side) to 3 (top edge), counter-clockwise. |
||||
# fcat_screen_edge=0 |
||||
|
||||
### Color customization |
||||
# text_color=FFFFFF |
||||
# gpu_color=2E9762 |
||||
# cpu_color=2E97CB |
||||
# vram_color=AD64C1 |
||||
# ram_color=C26693 |
||||
# engine_color=EB5B5B |
||||
# io_color=A491D3 |
||||
# frametime_color=00FF00 |
||||
# background_color=020202 |
||||
# media_player_color=FFFFFF |
||||
# wine_color=EB5B5B |
||||
# battery_color=FF9078 |
||||
# network_color=E07B85 |
||||
|
||||
### Specify GPU with PCI bus ID for AMDGPU and NVML stats |
||||
### Set to 'domain:bus:slot.function' |
||||
# pci_dev=0:0a:0.0 |
||||
|
||||
### Blacklist |
||||
# blacklist= |
||||
|
||||
### Control over socket |
||||
### Enable and set socket name, '%p' is replaced with process id |
||||
## example: mangohud |
||||
## example: mangohud-%p |
||||
# control = -1 |
||||
|
||||
################ WORKAROUNDS ################# |
||||
### Options starting with "gl_*" are for OpenGL |
||||
### Specify what to use for getting display size. Options are "viewport", "scissorbox" or disabled. Defaults to using glXQueryDrawable |
||||
# gl_size_query=viewport |
||||
|
||||
### (Re)bind given framebuffer before MangoHud gets drawn. Helps with Crusader Kings III |
||||
# gl_bind_framebuffer=0 |
||||
|
||||
### Don't swap origin if using GL_UPPER_LEFT. Helps with Ryujinx |
||||
# gl_dont_flip=1 |
||||
|
||||
################ INTERACTION ################# |
||||
|
||||
### Change toggle keybinds for the hud & logging |
||||
# toggle_hud=Shift_R+F12 |
||||
# toggle_hud_position=Shift_R+F11 |
||||
# toggle_preset=Shift_R+F10 |
||||
# toggle_fps_limit=Shift_L+F1 |
||||
# toggle_logging=Shift_L+F2 |
||||
# reload_cfg=Shift_L+F4 |
||||
# upload_log=Shift_L+F3 |
||||
|
||||
#################### LOG ##################### |
||||
### Automatically start the log after X seconds |
||||
# autostart_log= |
||||
### Set amount of time in seconds that the logging will run for |
||||
# log_duration= |
||||
### Change the default log interval, 0 is default |
||||
# log_interval=0 |
||||
### Set location of the output files (required for logging) |
||||
# output_folder=/home/<USERNAME>/mangologs |
||||
### Permit uploading logs directly to FlightlessMango.com |
||||
## set to 1 to enable |
||||
# permit_upload=0 |
||||
### Define a '+'-separated list of percentiles shown in the benchmark results |
||||
### Use "AVG" to get a mean average. Default percentiles are 97+AVG+1+0.1 |
||||
## example: ['97', 'AVG', '1', '0.1'] |
||||
# benchmark_percentiles=97,AVG |
||||
## Adds more headers and information such as versioning to the log. This format is not supported on flightlessmango.com (yet) |
||||
# log_versioning |
||||
## Enable automatic uploads of logs to flightlessmango.com |
||||
# upload_logs |
@ -1,11 +1,7 @@
|
||||
[Desktop Entry] |
||||
Name=Gis Weather |
||||
Exec=sh -c 'sleep 1; python3 "/usr/share/gis-weather/gis-weather.py" ' |
||||
Type=Application |
||||
Exec=gis-weather |
||||
Icon=gis-weather |
||||
Terminal=false |
||||
Name=gis-weather |
||||
Comment=A lightweight weather widget |
||||
GenericName=Gis-Weather Widget |
||||
Categories=System; |
||||
Hidden=false |
||||
|
||||
Icon=/usr/share/gis-weather/icon.png |
||||
Comment=Wetter-Widget |
@ -1,9 +1,9 @@
|
||||
[Launch] |
||||
last version=3.4.99.alpha1 |
||||
last version=3.5.0 |
||||
default backend=opengl |
||||
last year=2023 |
||||
last year=2024 |
||||
|
||||
ping server=true |
||||
|
||||
[Gui] |
||||
mode=0 |
||||
mode=1 |
||||
|
After Width: | Height: | Size: 363 KiB |
Before Width: | Height: | Size: 18 KiB |
@ -1,54 +0,0 @@
|
||||
#3.4.99.alpha1 |
||||
|
||||
#[gtk-about] |
||||
|
||||
[Desktop Entry] |
||||
|
||||
#F[Icon] |
||||
frame_maininfo= |
||||
|
||||
#d+ Name of the container it belongs to: |
||||
Container=Misc |
||||
|
||||
#v |
||||
sep_display= |
||||
|
||||
Hidden=true |
||||
|
||||
Categories=Game |
||||
|
||||
#s[Default] Launcher's name: |
||||
Name=Yuzu |
||||
|
||||
#S+[Default] Image's name or path: |
||||
Icon= |
||||
|
||||
#s[Default] Command to launch on click: |
||||
#{Example: nautilus --no-desktop, gedit, etc. You can even enter a shortkey, e.g. <Alt>F1, <Ctrl>c, <Ctrl>v, etc} |
||||
Exec=gamemoderun mangohud --dlsym yuzu |
||||
|
||||
|
||||
#X[Extra parameters] |
||||
frame_extra= |
||||
|
||||
#b Don't link the launcher with its window |
||||
#{If you chose to mix launcher and applications, this option will deactivate this behaviour for this launcher only. It can be useful for instance for a launcher that launches a script in a terminal, but you don't want it to steal the terminal's icon from the taskbar.} |
||||
prevent inhibate=false |
||||
|
||||
#K[Default] Class of the program: |
||||
#{The only reason you may want to modify this parameter is if you made this launcher by hands. If you dropped it into the dock from the menu, it is nearly sure that you shouldn't touch it. It defines the class of the program, which is useful to link the application with its launcher.} |
||||
StartupWMClass= |
||||
|
||||
#b Run in a terminal? |
||||
Terminal=false |
||||
|
||||
#i-[0;16] Only show in this specific viewport: |
||||
#{If '0' the launcher will be displayed on every viewport.} |
||||
ShowOnViewport=0 |
||||
|
||||
#f[0;100] Order you want for this launcher among the others: |
||||
Order=4 |
||||
|
||||
Icon Type=0 |
||||
Type=Application |
||||
Origin=/usr/share/applications/yuzu.desktop |
@ -1,6 +1,8 @@
|
||||
if status is-interactive |
||||
# Commands to run in interactive sessions can go here |
||||
function fish_greeting |
||||
neofetch --cpu_temp C |
||||
fastfetch |
||||
end |
||||
end |
||||
|
||||
zoxide init fish --cmd cd | source |
||||
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.0 KiB |
@ -1,5 +1,7 @@
|
||||
file:///home/testgind/Bilder |
||||
file:///home/testgind/Dokumente |
||||
file:///home/testgind/Downloads |
||||
file:///home/testgind/Musik |
||||
file:///home/testgind/Scripts |
||||
file:///home/gind/Bilder |
||||
file:///home/gind/Dokumente |
||||
file:///home/gind/Downloads |
||||
file:///home/gind/Musik |
||||
file:///home/gind/Scripts |
||||
file:///home/gind/Videos |
||||
file:///home/gind/%C3%96ffentlich |
||||
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,10 +1,12 @@
|
||||
{ |
||||
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme", |
||||
"font_size": 12, |
||||
"font_size": 16, |
||||
"font_face": "Comic Mono", |
||||
"ignored_packages": |
||||
[ |
||||
"Vintage", |
||||
], |
||||
"theme": "Adaptive.sublime-theme", |
||||
"index_files": true, |
||||
"index_exclude_gitignore": false, |
||||
} |
||||
|
@ -0,0 +1,14 @@
|
||||
#--enable-zero-copy |
||||
#--enable-gpu-rasterization |
||||
|
||||
--ignore-gpu-blocklist |
||||
--disable-gpu-driver-workarounds |
||||
--ozone-platform-hint=x11 |
||||
--ozone-platform=x11 |
||||
--enable-accelerated-video-decode |
||||
--enable-features=VaapiVideoDecoder,VaapiVideoDecodeLinuxGL,VaapiIgnoreDriverChecks,UseMultiPlaneFormatForHardwareVideo |
||||
--disable-features=UseChromeOSDirectVideoDecoder,UseSkiaRenderer |
||||
|
||||
#--use-gl=angle |
||||
#--use-angle=vulkan |
||||
#--enable-features=Vulkan,VulkanFromANGLE,DefaultANGLEVulkan,VaapiIgnoreDriverChecks,VaapiVideoDecoder,UseMultiPlaneFormatForHardwareVideo |
@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<channel name="xfce4-terminal" version="1.0"> |
||||
<property name="background-mode" type="string" value="TERMINAL_BACKGROUND_TRANSPARENT"/> |
||||
<property name="background-darkness" type="double" value="0.75"/> |
||||
<property name="color-palette" type="string" value="rgb(0,0,0);rgb(170,0,0);rgb(134,157,65);rgb(170,85,0);rgb(0,0,170);rgb(170,0,170);rgb(0,170,170);rgb(170,170,170);rgb(85,85,85);rgb(255,85,85);rgb(174,223,30);rgb(255,255,85);rgb(70,66,247);rgb(255,85,255);rgb(174,223,30);rgb(255,255,255)"/> |
||||
<property name="run-custom-command" type="bool" value="true"/> |
||||
<property name="custom-command" type="string" value="/usr/bin/fish"/> |
||||
<property name="font-name" type="string" value="Comic Mono 12"/> |
||||
<property name="misc-always-show-tabs" type="bool" value="false"/> |
||||
<property name="misc-bell" type="bool" value="false"/> |
||||
<property name="misc-bell-urgent" type="bool" value="false"/> |
||||
<property name="misc-borders-default" type="bool" value="true"/> |
||||
<property name="misc-cursor-blinks" type="bool" value="false"/> |
||||
<property name="misc-cursor-shape" type="string" value="TERMINAL_CURSOR_SHAPE_BLOCK"/> |
||||
<property name="misc-default-geometry" type="string" value="103x23"/> |
||||
<property name="misc-inherit-geometry" type="bool" value="false"/> |
||||
<property name="misc-menubar-default" type="bool" value="true"/> |
||||
<property name="misc-mouse-autohide" type="bool" value="false"/> |
||||
<property name="misc-mouse-wheel-zoom" type="bool" value="true"/> |
||||
<property name="misc-toolbar-default" type="bool" value="false"/> |
||||
<property name="misc-confirm-close" type="bool" value="false"/> |
||||
<property name="misc-cycle-tabs" type="bool" value="true"/> |
||||
<property name="misc-tab-close-buttons" type="bool" value="true"/> |
||||
<property name="misc-tab-close-middle-click" type="bool" value="true"/> |
||||
<property name="misc-tab-position" type="string" value="GTK_POS_TOP"/> |
||||
<property name="misc-highlight-urls" type="bool" value="true"/> |
||||
<property name="misc-middle-click-opens-uri" type="bool" value="true"/> |
||||
<property name="misc-copy-on-select" type="bool" value="false"/> |
||||
<property name="misc-show-relaunch-dialog" type="bool" value="true"/> |
||||
<property name="misc-rewrap-on-resize" type="bool" value="true"/> |
||||
<property name="misc-slim-tabs" type="bool" value="false"/> |
||||
<property name="misc-new-tab-adjacent" type="bool" value="false"/> |
||||
<property name="misc-search-dialog-opacity" type="uint" value="100"/> |
||||
<property name="misc-show-unsafe-paste-dialog" type="bool" value="true"/> |
||||
<property name="misc-right-click-action" type="string" value="TERMINAL_RIGHT_CLICK_ACTION_CONTEXT_MENU"/> |
||||
<property name="scrolling-lines" type="uint" value="999999"/> |
||||
</channel> |
@ -0,0 +1,7 @@
|
||||
<driconf> |
||||
<device> |
||||
<application name="Default"> |
||||
<option name="vblank_mode" value="1" /> |
||||
</application> |
||||
</device> |
||||
</driconf> |
@ -0,0 +1,79 @@
|
||||
* |
||||
!.gitignore |
||||
!.cache |
||||
!.cache/sessions |
||||
!.cache/sessions/xfce4-session-archlinux-gind:0 |
||||
!.config |
||||
!.config/Kvantum |
||||
!.config/Kvantum/* |
||||
!.config/MangoHud |
||||
!.config/MangoHud/MangoHud.conf |
||||
!.config/autostart |
||||
!.config/autostart/blueman.desktop |
||||
!.config/autostart/cairo-dock.desktop |
||||
!.config/autostart/easyeffects-service.desktop |
||||
!.config/autostart/gis-weather.desktop |
||||
!.config/autostart/mic volumne.desktop |
||||
!.config/autostart/pamac-tray.desktop |
||||
!.config/autostart/restartx.desktop |
||||
!.config/cairo-dock |
||||
!.config/cairo-dock/* |
||||
!.config/cairo-dock/current_theme |
||||
!.config/cairo-dock/current_theme/plug-ins |
||||
!.config/cairo-dock/current_theme/plug-ins/System-Monitor |
||||
!.config/cairo-dock/current_theme/plug-ins/switcher |
||||
!.config/cairo-dock/current_theme/plug-ins/logout |
||||
!.config/cairo-dock/current_theme/plug-ins/systray |
||||
!.config/cairo-dock/current_theme/launchers |
||||
!.config/cairo-dock/current_theme/icons |
||||
!.config/cairo-dock/current_theme/icons/game-folder.png |
||||
!.config/cairo-dock/current_theme/icons/tv-icon.png |
||||
!.config/compiz |
||||
!.config/compiz/compizconfig |
||||
!.config/compiz/compizconfig/Default.ini |
||||
!.config/compiz/compizconfig/config |
||||
!.config/compiz/compizconfig/config/* |
||||
!.config/fish |
||||
!.config/fish/config.fish |
||||
!.config/fish/fish_variables |
||||
!.config/gamemode.ini |
||||
!.config/gis-weather |
||||
!.config/gis-weather/* |
||||
!.config/gtk-3.0 |
||||
.config/gtk-3.0/bookmarks |
||||
.config/sublime-text-3 |
||||
!.config/gtk-3.0/settings.ini |
||||
!.config/mimeapps.list |
||||
!.config/neofetch |
||||
!.config/neofetch/config.conf |
||||
!.config/qt5ct |
||||
!.config/qt5ct/colors |
||||
!.config/qt5ct/colors/gind.conf |
||||
!.config/qt5ct/qt5ct.conf |
||||
!.config/qt6ct |
||||
!.config/qt6ct/qt6ct.conf |
||||
!.config/xfce4 |
||||
!.config/xfce4/terminal |
||||
!.config/xfce4/terminal/accels.scm |
||||
!.config/xfce4/terminal/terminalrc |
||||
!.config/xfce4/xfconf |
||||
!.config/xfce4/xfconf/xfce-perchannel-xml |
||||
!.config/xfce4/xfconf/xfce-perchannel-xml/* |
||||
!.config/vivaldi-stable.conf |
||||
!.dmrc |
||||
!.drirc |
||||
!.emerald |
||||
!.emerald/* |
||||
!.xprofile |
||||
!Scripts |
||||
!Scripts/cemu.sh |
||||
!Scripts/game-dummy.sh |
||||
!Scripts/gamemode-end.sh |
||||
!Scripts/gamemode-start.sh |
||||
!Scripts/lollypop-volumne-ctrl.sh |
||||
!Scripts/reload-compiz.sh |
||||
!Scripts/lollypop-mprisctl.sh |
||||
!Scripts/notifyVolumn.sh |
||||
!Scripts/startCairoDock.sh |
||||
!Scripts/renameHomeDirInConfigs.sh |
||||
!tv-fritzbox.xspf |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,115 @@
|
||||
#!/bin/bash |
||||
export DXVK_LOG_LEVEL=none |
||||
#export ENABLE_GAMESCOPE_WSI=1 |
||||
export LD_BIND_NOW=1 |
||||
#export MESA_LOADER_DRIVER_OVERRIDE=zink |
||||
#export RADV_PERFTEST=gpl,nggc,rt |
||||
#export VKD3D_CONFIG=nodxr |
||||
#export VKD3D_FEATURE_LEVEL=12_1 |
||||
export VKD3D_DEBUG=none |
||||
export WINEFSYNC=1 |
||||
#export NO_GAMEMODE=1 |
||||
export WINEDEBUG=-all |
||||
export ENABLE_GAMESCOPE_WSI=0 |
||||
#export WINEDLLOVERRIDES=winedbg.exe= |
||||
|
||||
height=1200 |
||||
width=1920 |
||||
|
||||
# https://wiki.archlinux.org/title/Gamescopes |
||||
#setcap 'CAP_SYS_NICE=eip' $(which gamescope) |
||||
# main monitor |
||||
if [[ $(xfconf-query -c displays -p /ActiveProfile -v | grep b28b7af69320201d1cf206ebf28373980add1451) || $(xfconf-query -c displays -p /ActiveProfile -v | grep ce0b1612aa711b78a720295d271a33894e2b72bf) ]]; then |
||||
height=1080 |
||||
fi |
||||
echo $height; |
||||
|
||||
if [ -z $STEAM_COMPAT_DATA_PATH ]; then |
||||
export STEAM_COMPAT_DATA_PATH="/home/alex/.wine_proton" |
||||
fi |
||||
|
||||
#export MANGOHUD_CONFIGFILE=/home/alex/.config/MangoHud/gamescope.conf |
||||
#export MANGOHUD_CONFIG=fps_limit=60+120+0+30,legacy_layout=false,gpu_stats,gpu_temp,gpu_core_clock,gpu_mem_clock,gpu_power,gpu_fan,gpu_junction_temp,gpu_load_change,gpu_load_value=50\,90,gpu_load_color=FFFFFF\,FFAA7F\,CC0000,gpu_text=RX6800,gpu_color=EB5B5B,gpu_voltage,vram,vram_color=EB5B5B,cpu_stats,cpu_temp,cpu_power,cpu_mhz,core_bars,cpu_load_change,core_load_change |
||||
#command="gamescope --force-grab-cursor -f -F fsr -o 24 -w $width -h $height --mangoapp gamemoderun" |
||||
command="gamescope --force-grab-cursor -f -F fsr -o 24 -w $width -h $height -- gamemoderun mangohud ENABLE_VKBASALT=1" |
||||
if [[ $NO_GAMESCOPE || "$@" == *"SteamLaunch"* ]]; then |
||||
command="mangohud --dlsym ENABLE_VKBASALT=1 gamemoderun" |
||||
fi |
||||
|
||||
if [ $NO_GAMEMODE ]; then |
||||
notify-send 'Starte ohne gamemode' --icon=emblem-games |
||||
command="gamescope --force-grab-cursor -f -F fsr -o 24 -w $width -h $height -- mangohud ENABLE_VKBASALT=1" |
||||
fi |
||||
|
||||
if [[ $NO_GAMEMODE && $NO_GAMESCOPE ]]; then |
||||
command="mangohud --dlsym ENABLE_VKBASALT=1 " |
||||
fi |
||||
|
||||
if [[ "$@" == *"/mnt/gaming/"* ]]; then |
||||
gamingHdd=true |
||||
fi |
||||
|
||||
if [[ $GAMING_HDD != 0 && $gamingHdd ]]; then |
||||
notifyId=$(notify-send 'Fahre Festplatte hoch' 'Geduld junger Padawan...' --icon=drive-harddisk -p) |
||||
$(output="$(echo -n $(sudo hdparm -S 0 /dev/sda))"; notify-send 'Festplatte läuft' "$output" --icon=drive-harddisk -r $notifyId) & |
||||
fi |
||||
|
||||
|
||||
if [ $# -eq 1 ]; then |
||||
$command "$1" |
||||
elif [[ "$@" == *"SteamLaunch"* ]] || [[ "$@" == *"/Heroic/"* ]] || [[ "$@" == *"/gamelauncher/"* ]]; then |
||||
$command "$@" |
||||
elif [[ "$1" == "ulwgl" ]]; then |
||||
export GAMEID=123333 |
||||
cd /home/alex/git/ULWGL/ |
||||
echo $command ./gamelauncher.sh "$PROTON_PATH" "$EXECUTABLE_PATH" "$ARGUMENTS" |
||||
$command ./gamelauncher.sh "$PROTON_PATH" "$EXECUTABLE_PATH" "$ARGUMENTS" |
||||
else |
||||
export STEAM_COMPAT_CLIENT_INSTALL_PATH=/home/alex/.steam |
||||
cd "$1" |
||||
wine="wine $2" |
||||
if [ "$3" ]; then |
||||
wine="$3 $2" |
||||
if [ "$3" == "staging" ]; then |
||||
wine="/opt/wine-tkg-staging-fsync-git-opt/bin/wine $2" |
||||
fi |
||||
fi |
||||
|
||||
if [ "$4" != "true" ] && [[ "$wine" != *"proton"* ]]; then |
||||
wine="$wine explorer /desktop=Game,${width}x${height} $2" |
||||
fi |
||||
|
||||
if [ "$wine" == "proton" ]; then |
||||
wine="/home/alex/.local/share/Steam/compatibilitytools.d/GE-Proton7-55/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-exp" ]; then |
||||
wine="/home/alex/.local/share/Steam/steamapps/common/Proton\ -\ Experimental/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-6" ]; then |
||||
wine="/home/alex/.local/share/Steam/steamapps/common/Proton\ 6.3/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-7" ]; then |
||||
wine="/home/alex/.local/share/Steam/steamapps/common/Proton\ 7.0/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-8" ]; then |
||||
wine="/home/alex/.local/share/Steam/steamapps/common/Proton\ 8.0/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-ge" ]; then |
||||
wine="/home/alex/.local/share/Steam/compatibilitytools.d/GE-Proton9-7/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-ge-13" ]; then |
||||
wine="/home/alex/.local/share/Steam/compatibilitytools.d/GE-Proton8-13/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-ge-32" ]; then |
||||
wine="/home/alex/.local/share/Steam/compatibilitytools.d/GE-Proton8-32/proton run \"$1$2\"" |
||||
elif [ "$wine" == "proton-ge-9" ]; then |
||||
wine="/home/alex/.local/share/Steam/compatibilitytools.d/GE-Proton9-2/proton run \"$1$2\"" |
||||
fi |
||||
command="$command sh -c '$wine'" |
||||
#xfce4-terminal -e "bash -c \"$command\";bash" |
||||
echo $wine |
||||
echo $command |
||||
bash -c "$command" |
||||
#sudo killall $(echo $2 | cut -d ' ' -f1) |
||||
sleep 2 |
||||
sudo killall explorer.exe |
||||
sudo killall -s 9 winedevice.exe |
||||
fi |
||||
|
||||
if [[ $GAMING_HDD != 0 && $gamingHdd ]]; then |
||||
output="$(echo -n $(sudo hdparm -S 72 /dev/sda))" |
||||
notify-send 'Setze Timeout für Festplatte' "$output" --icon=drive-harddisk |
||||
fi |
@ -0,0 +1,12 @@
|
||||
#!/bin/bash |
||||
expireTimeNotifyOSD=3000 |
||||
currentId=2 |
||||
tmpFile=/tmp/currentLollypopVolumnNotifyId$(whoami) |
||||
|
||||
currentVolume=$(dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.Lollypop /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Volume' | grep -Eo '[+-]?[0-9]+([.][0-9]+)?' | tail -n 1) |
||||
operator=$1 |
||||
newVolume=$(echo $currentVolume $operator 0.05 | bc) |
||||
newVolumeAsInt=$(echo $newVolume | cut -c 2-3) |
||||
dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.Lollypop /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Set string:'org.mpris.MediaPlayer2.Player' string:'Volume' variant:double:$newVolume |
||||
|
||||
notify-send "Volume $newVolumeAsInt" "test" -p -t $expireTimeNotifyOSD -r $currentId -i org.gnome.Lollypop -h int:value:$newVolumeAsInt > $tmpFile |
@ -1,2 +0,0 @@
|
||||
#!/bin/bash |
||||
dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.Lollypop /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Set string:'org.mpris.MediaPlayer2.Player' string:'Volume' variant:double:0.55 |
@ -1,2 +0,0 @@
|
||||
#!/bin/bash |
||||
dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.Lollypop /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Set string:'org.mpris.MediaPlayer2.Player' string:'Volume' variant:double:0.8 |
@ -0,0 +1,7 @@
|
||||
killall cairo-dock |
||||
cairo-dock & |
||||
sleep 2 |
||||
cd /home/alex/.config/cairo-dock/current_theme/plug-ins/RSSreader |
||||
cp _RSSreader RSSreader.conf |
||||
dbus-send --session --dest=org.cairodock.CairoDock /org/cairodock/CairoDock org.cairodock.CairoDock.Reload string:"config-file=/home/alex/.config/cairo-dock/current_theme/plug-ins/RSSreader/RSSreader.conf" |
||||
dbus-send --session --dest=org.cairodock.CairoDock /org/cairodock/CairoDock org.cairodock.CairoDock.Reload string:"config-file=/home/alex/.config/cairo-dock/current_theme/plug-ins/systray/systray.conf" |
Loading…
Reference in new issue