From 0e1992b36a567d9ab63a7f43bd1cf724ace23a49 Mon Sep 17 00:00:00 2001 From: wholteza Date: Fri, 2 Jan 2026 11:33:27 +0100 Subject: [PATCH] Added sunshine --- .../lua/kickstart/plugins/indent_line.lua | 9 + .config/screenlayout/apply-screen-layout.sh | 2 +- .config/screenlayout/desktop-dota.sh | 2 - .config/screenlayout/desktop-steamlink.sh | 2 - .config/screenlayout/desktop.sh | 2 - .config/sunshine/apps.json | 38 ++++ .config/sunshine/do.sh | 3 + .config/sunshine/sunshine.conf | 1 + .config/sunshine/undo.sh | 4 + .config/sway/config | 20 +- .../wholteza-2210436270004.properties | 200 ++++++++++++++++-- 11 files changed, 257 insertions(+), 26 deletions(-) delete mode 100755 .config/screenlayout/desktop-dota.sh delete mode 100755 .config/screenlayout/desktop-steamlink.sh delete mode 100755 .config/screenlayout/desktop.sh create mode 100644 .config/sunshine/apps.json create mode 100644 .config/sunshine/do.sh create mode 100644 .config/sunshine/sunshine.conf create mode 100644 .config/sunshine/undo.sh diff --git a/.config/nvim/lua/kickstart/plugins/indent_line.lua b/.config/nvim/lua/kickstart/plugins/indent_line.lua index ed7f269..bb7062d 100644 --- a/.config/nvim/lua/kickstart/plugins/indent_line.lua +++ b/.config/nvim/lua/kickstart/plugins/indent_line.lua @@ -1,3 +1,12 @@ +vim.api.nvim_create_autocmd('FileType', { + pattern = 'html', + callback = function() + vim.opt_local.tabstop = 2 + vim.opt_local.shiftwidth = 2 + vim.opt_local.expandtab = true + end, +}) + return { { -- Add indentation guides even on blank lines 'lukas-reineke/indent-blankline.nvim', diff --git a/.config/screenlayout/apply-screen-layout.sh b/.config/screenlayout/apply-screen-layout.sh index 3779e2b..36c0c27 100755 --- a/.config/screenlayout/apply-screen-layout.sh +++ b/.config/screenlayout/apply-screen-layout.sh @@ -4,7 +4,7 @@ hostname=$(cat ~/hostname) if [[ $hostname == "bepis" ]]; then $(~/.config/screenlayout/desktop.sh) elif [[ $hostname == "arch-bepis" ]]; then - $(~/.config/screenlayout/desktop.sh) + $(~/.config/screenlayout/arch-bepis-desktop-sway.sh) elif [[ $hostname == "bepis-laptop" ]]; then $(~/.config/screenlayout/laptop.sh) fi diff --git a/.config/screenlayout/desktop-dota.sh b/.config/screenlayout/desktop-dota.sh deleted file mode 100755 index 5d4f466..0000000 --- a/.config/screenlayout/desktop-dota.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -xrandr --output DVI-I-0 --off --output DVI-I-1 --off --output HDMI-0 --primary --mode 2560x1440 --rate 99.99 --pos 1200x240 --rotate normal --output DP-0 --mode 1920x1200 --pos 0x0 --rotate left --output DP-1 --off --output DVI-D-0 --off diff --git a/.config/screenlayout/desktop-steamlink.sh b/.config/screenlayout/desktop-steamlink.sh deleted file mode 100755 index 4c77a02..0000000 --- a/.config/screenlayout/desktop-steamlink.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -xrandr --output DVI-I-0 --off --output DVI-I-1 --off --output HDMI-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DP-0 --off --output DP-1 --off --output DVI-D-0 --off diff --git a/.config/screenlayout/desktop.sh b/.config/screenlayout/desktop.sh deleted file mode 100755 index af6fcd1..0000000 --- a/.config/screenlayout/desktop.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -xrandr --output HDMI-3 --primary --mode 3440x1440 --rate 99.99 --pos 1440x475 --rotate normal --output DP-2 --mode 2560x1440 --pos 0x0 --rotate left diff --git a/.config/sunshine/apps.json b/.config/sunshine/apps.json new file mode 100644 index 0000000..2b5ebf1 --- /dev/null +++ b/.config/sunshine/apps.json @@ -0,0 +1,38 @@ +{ + "apps": [ + { + "auto-detach": true, + "detached": [ + "setsid steam steam://open/bigpicture" + ], + "exclude-global-prep-cmd": false, + "exit-timeout": 5, + "image-path": "steam.png", + "name": " 1080p Steam Big Picture", + "prep-cmd": [ + { + "do": "sh /home/wholteza/.config/sunshine/do.sh", + "undo": "sh /home/wholteza/.config/sunshine/undo.sh && setsid steam steam://close/bigpicture" + } + ], + "wait-all": true + }, + { + "auto-detach": true, + "exclude-global-prep-cmd": false, + "exit-timeout": 5, + "image-path": "desktop.png", + "name": "1080p Desktop", + "prep-cmd": [ + { + "do": "sh /home/wholteza/.config/sunshine/do.sh", + "undo": "sh /home/wholteza/.config/sunshine/undo.sh" + } + ], + "wait-all": true + } + ], + "env": { + "PATH": "$(PATH):$(HOME)/.local/bin" + } +} \ No newline at end of file diff --git a/.config/sunshine/do.sh b/.config/sunshine/do.sh new file mode 100644 index 0000000..755d547 --- /dev/null +++ b/.config/sunshine/do.sh @@ -0,0 +1,3 @@ +#!/bin/sh +sh /home/wholteza/.config/screenlayout/arch-bepis-desktop-sunshine-sway.sh +swaymsg workspace "5: Games" diff --git a/.config/sunshine/sunshine.conf b/.config/sunshine/sunshine.conf new file mode 100644 index 0000000..7c79eb9 --- /dev/null +++ b/.config/sunshine/sunshine.conf @@ -0,0 +1 @@ +key_rightalt_to_key_win = enabled diff --git a/.config/sunshine/undo.sh b/.config/sunshine/undo.sh new file mode 100644 index 0000000..f398c5a --- /dev/null +++ b/.config/sunshine/undo.sh @@ -0,0 +1,4 @@ +#!/bin/sh +sh /home/wholteza/.config/screenlayout/arch-bepis-desktop-sway.sh +pidof steam | xargs kill + diff --git a/.config/sway/config b/.config/sway/config index a63fbab..ac94c9b 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -33,9 +33,6 @@ set $urgent-bg-color #E53935 exec_always export hostname="$(cat /etc/hostname)" && ~/.config/screenlayout/apply-screen-layout.sh exec_always export hostname="$(cat /etc/hostname)" && ~/.config/keyboard/apply-keyboard-layout.sh - - - set $mod Mod4 font pango:DejaVu 14 @@ -273,6 +270,13 @@ for_window [title="RuneLite.*"] floating enable for_window [title="RuneLite.*"] border none for_window [title="RuneLite.*"] resize set width 2440 px height 1420 px +for_window [class="steam"] \ + fullscreen disable; \ + floating enable; \ + border pixel 0; \ + resize set $display_w $display_h; \ + move absolute position 0 0; \ + # Assigning application to workspaces ## 1: is reserved for whatever ## 2: Social @@ -302,6 +306,8 @@ input "type:pointer" { pointer_accel 0 } +# NOTE: Screens are managed by apply-screen-layout.sh + ## Run secondary sceen in 1080p # output HDMI-A-3 mode 3440x1440@99.99Hz pos 1080 237 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 # output DP-2 mode 1920x1080 pos 0 0 transform 270 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 @@ -310,9 +316,13 @@ input "type:pointer" { #output HDMI-A-3 mode 2560x1440@99.99Hz pos 1440 475 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 ## Main setup with ultrawide and portrait secondary screen -output HDMI-A-3 mode 3440x1440@99.99Hz pos 1440 475 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 -output DP-2 mode 2560x1440 pos 0 0 transform 270 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 +#output HDMI-A-3 mode 3440x1440@99.99Hz pos 1440 475 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 +#output DP-2 mode 2560x1440 pos 0 0 transform 270 bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 + +## Main +##output HDMI-A-3 mode 3440x1440@99.99Hz bg /home/wholteza/.config/feh/wallpaper.png fit #1b1f28 # Autostart applications exec --no-startup-id blueman-applet exec --no-startup-id bitwarden-desktop +exec --no-startup-id sunshine diff --git a/.var/app/com.adamcake.Bolt/data/bolt-launcher/.runelite/profiles2/wholteza-2210436270004.properties b/.var/app/com.adamcake.Bolt/data/bolt-launcher/.runelite/profiles2/wholteza-2210436270004.properties index 90eccc8..c352359 100644 --- a/.var/app/com.adamcake.Bolt/data/bolt-launcher/.runelite/profiles2/wholteza-2210436270004.properties +++ b/.var/app/com.adamcake.Bolt/data/bolt-launcher/.runelite/profiles2/wholteza-2210436270004.properties @@ -1,4 +1,22 @@ - #RuneLite configuration +#RuneLite configuration +#Sun Oct 05 17:32:02 CEST 2025 +GE_FILTERS_CONFIG.enableBankTagFilter=true +GE_FILTERS_CONFIG.enableInvSetupsAdditionalItems=true +GE_FILTERS_CONFIG.enableInvSetupsBoltPouch=true +GE_FILTERS_CONFIG.enableInvSetupsEquipment=true +GE_FILTERS_CONFIG.enableInvSetupsInventory=true +GE_FILTERS_CONFIG.enableInvSetupsQuiver=true +GE_FILTERS_CONFIG.enableInvSetupsRunePouch=true +GE_FILTERS_CONFIG.enableInventoryFilter=true +GE_FILTERS_CONFIG.enableInventorySetupsFilter=true +GE_FILTERS_CONFIG.enableRecentItemsFilter=true +GE_FILTERS_CONFIG.filterHorizontalSpacing=5 +GE_FILTERS_CONFIG.filterTitleColour=-5111808 +GE_FILTERS_CONFIG.hideSearchPrefix=true +GE_FILTERS_CONFIG.keyPressOverridesFilter=true +GE_FILTERS_CONFIG_DATA.ge-recent-buy-offers=[314,2313,1953,12631,3036,137] +GE_FILTERS_CONFIG_DATA.ge-recent-items=[314,2315,2313,1953,8790,12631,12629,3036,3032,137,23387,21387,1733] +GE_FILTERS_CONFIG_DATA.ge-recent-sell-offers=[2315,8790] advancedmining.showAdditionalMined=true advancedmining.showEssenceMined=true advancedmining.showGemsFound=true @@ -152,6 +170,7 @@ chatnotification.notifyOnHighlight={"enabled"\:false,"initialized"\:false,"overr chatnotification.notifyOnOwnName={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} chatnotification.notifyOnPM={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} chatnotification.notifyOnTrade={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +clanchat.chatsData=hawkeye DP clanchat.clanChatIcons=true clanchat.clanChatShowJoinLeave=false clanchat.clanChatShowOnlineMemberCount=false @@ -194,7 +213,7 @@ dailytaskindicators.showRunes=false dailytaskindicators.showSand=false dailytaskindicators.showStaves=true defaultworld.defaultWorld=0 -defaultworld.lastWorld=301 +defaultworld.lastWorld=302 defaultworld.useLastWorld=false discord.actionTimeout=5 discord.elapsedTime=TOTAL @@ -249,19 +268,28 @@ fishing.showTiles=true fishing.statTimeout=5 fishing.trawlerContribution=true fishing.trawlerTimer=true +flipping.marginCheckLoss=true +flipping.remainingGELimitProfit=false +flipping.roiGradientMax=2 +flipping.slotTimerBuyTextColor=-13459206 +flipping.slotTimerSellTextColor=-995461 +flipping.slotTimersEnabled=true +flipping.tradeStagnationTime=15 +flipping.twelveHourFormat=true +flipping.verboseView=true fpscontrol.drawFps=true fpscontrol.limitFps=true fpscontrol.limitFpsUnfocused=true fpscontrol.maxFps=100 fpscontrol.maxFpsUnfocused=50 -friendNotes.note_Aston\ Marvin=Gave me runes and gold, very nice dude\! +friendNotes.note_ChannelOff=Gave me runes and gold, very nice dude\! friendNotes.showIcons=true friendlist.showWorldOnLogin=false -gpu.anisotropicFilteringLevel=1 +gpu.anisotropicFilteringLevel=0 gpu.antiAliasingMode=DISABLED gpu.brightTextures=true gpu.colorBlindMode=NONE -gpu.drawDistance=77 +gpu.drawDistance=60 gpu.expandedMapLoadingChunks=1 gpu.fogDepth=0 gpu.fpsTarget=100 @@ -301,7 +329,7 @@ grounditems.highValuePrice=1000000 grounditems.highlightTiles=false grounditems.highlightValueCalculation=HIGHEST grounditems.highlightedColor=-5635841 -grounditems.highlightedItems=Tin ore +grounditems.highlightedItems=Tin ore, *axe grounditems.hotkey=0\:512 grounditems.insaneValueColor=-39246 grounditems.insaneValuePrice=10000000 @@ -336,6 +364,94 @@ hiscore.bountylookup=false hiscore.menuOption=true hiscore.playerOption=true hiscore.virtualLevels=true +hotkeyablemenuswaps.bankSwap10Hotkey=0\:0 +hotkeyablemenuswaps.bankSwap1Hotkey=0\:0 +hotkeyablemenuswaps.bankSwap5Hotkey=0\:0 +hotkeyablemenuswaps.bankSwapAllBut1Hotkey=0\:0 +hotkeyablemenuswaps.bankSwapAllHotkey=0\:0 +hotkeyablemenuswaps.bankSwapExtraOpHotkey=0\:0 +hotkeyablemenuswaps.bankSwapSetXHotkey=0\:0 +hotkeyablemenuswaps.bankSwapXHotkey=0\:0 +hotkeyablemenuswaps.botdArceuusHotKey=0\:0 +hotkeyablemenuswaps.botdHosidiusHotKey=0\:0 +hotkeyablemenuswaps.botdLovakengjHotKey=0\:0 +hotkeyablemenuswaps.botdPiscariliusHotKey=0\:0 +hotkeyablemenuswaps.botdShayzeinHotKey=0\:0 +hotkeyablemenuswaps.customSwapperInstructions=https\://github.com/geheur/More-menu-entry-swaps/wiki/Custom-swaps +hotkeyablemenuswaps.customSwaps= +hotkeyablemenuswaps.doNotSwapDeprioritizedGroundItems=false +hotkeyablemenuswaps.doNotSwapOverMinimapOrbs=true +hotkeyablemenuswaps.examineCancelLateRemoval=true +hotkeyablemenuswaps.groundItemsPriceSortMode=DISABLED +hotkeyablemenuswaps.hotkey1=0\:0 +hotkeyablemenuswaps.hotkey10=0\:0 +hotkeyablemenuswaps.hotkey11=0\:0 +hotkeyablemenuswaps.hotkey12=0\:0 +hotkeyablemenuswaps.hotkey13=0\:0 +hotkeyablemenuswaps.hotkey14=0\:0 +hotkeyablemenuswaps.hotkey15=0\:0 +hotkeyablemenuswaps.hotkey16=0\:0 +hotkeyablemenuswaps.hotkey17=0\:0 +hotkeyablemenuswaps.hotkey18=0\:0 +hotkeyablemenuswaps.hotkey19=0\:0 +hotkeyablemenuswaps.hotkey2=0\:0 +hotkeyablemenuswaps.hotkey20=0\:0 +hotkeyablemenuswaps.hotkey21=0\:0 +hotkeyablemenuswaps.hotkey22=0\:0 +hotkeyablemenuswaps.hotkey23=0\:0 +hotkeyablemenuswaps.hotkey24=0\:0 +hotkeyablemenuswaps.hotkey25=0\:0 +hotkeyablemenuswaps.hotkey26=0\:0 +hotkeyablemenuswaps.hotkey27=0\:0 +hotkeyablemenuswaps.hotkey28=0\:0 +hotkeyablemenuswaps.hotkey29=0\:0 +hotkeyablemenuswaps.hotkey3=0\:0 +hotkeyablemenuswaps.hotkey30=0\:0 +hotkeyablemenuswaps.hotkey31=0\:0 +hotkeyablemenuswaps.hotkey32=0\:0 +hotkeyablemenuswaps.hotkey33=0\:0 +hotkeyablemenuswaps.hotkey34=0\:0 +hotkeyablemenuswaps.hotkey35=0\:0 +hotkeyablemenuswaps.hotkey36=0\:0 +hotkeyablemenuswaps.hotkey37=0\:0 +hotkeyablemenuswaps.hotkey38=0\:0 +hotkeyablemenuswaps.hotkey39=0\:0 +hotkeyablemenuswaps.hotkey4=0\:0 +hotkeyablemenuswaps.hotkey40=0\:0 +hotkeyablemenuswaps.hotkey5=0\:0 +hotkeyablemenuswaps.hotkey6=0\:0 +hotkeyablemenuswaps.hotkey7=0\:0 +hotkeyablemenuswaps.hotkey8=0\:0 +hotkeyablemenuswaps.hotkey9=0\:0 +hotkeyablemenuswaps.lockUnlockSlotHotkey=0\:0 +hotkeyablemenuswaps.maxCapeCraftingGuildSwapHotKey=0\:0 +hotkeyablemenuswaps.maxCapeTelePOHSwapHotKey=0\:0 +hotkeyablemenuswaps.maxCapeWarriorsGuildSwapHotKey=0\:0 +hotkeyablemenuswaps.occultAltarLeftClick=OFF +hotkeyablemenuswaps.pohDigsitePendantConfiguration=0\:0 +hotkeyablemenuswaps.pohDigsitePendantDestination=0\:0 +hotkeyablemenuswaps.pohDigsitePendantLeftClick=DESTINATION +hotkeyablemenuswaps.pohDigsitePendantTeleportMenu=0\:0 +hotkeyablemenuswaps.pohXericsTalismanConfiguration=0\:0 +hotkeyablemenuswaps.pohXericsTalismanDestination=0\:0 +hotkeyablemenuswaps.pohXericsTalismanLeftClick=DESTINATION +hotkeyablemenuswaps.pohXericsTalismanTeleportMenu=0\:0 +hotkeyablemenuswaps.portalNexusConfigurationSwapHotKey=0\:0 +hotkeyablemenuswaps.portalNexusDestinationSwapHotKey=0\:0 +hotkeyablemenuswaps.portalNexusTeleportMenuSwapHotKey=0\:0 +hotkeyablemenuswaps.serialVersion=2 +hotkeyablemenuswaps.swapAncientHotkey=0\:0 +hotkeyablemenuswaps.swapArceuusHotkey=0\:0 +hotkeyablemenuswaps.swapConfigure=0\:0 +hotkeyablemenuswaps.swapJewelleryBoxHotkey=0\:0 +hotkeyablemenuswaps.swapLastDestination=0\:0 +hotkeyablemenuswaps.swapLunarHotkey=0\:0 +hotkeyablemenuswaps.swapSpellbookSwap=true +hotkeyablemenuswaps.swapStandardHotkey=0\:0 +hotkeyablemenuswaps.swapTree=0\:0 +hotkeyablemenuswaps.swapUseHotkey=0\:0 +hotkeyablemenuswaps.swapVenerateHotkey=0\:0 +hotkeyablemenuswaps.swapZanaris=0\:0 hunterplugin.hexColorEmptyTrap=-65536 hunterplugin.hexColorFullTrap=-16711936 hunterplugin.hexColorOpenTrap=-256 @@ -593,6 +709,41 @@ menuentryswapper.swapTeleportItem=false menuentryswapper.swapTemporossLeave=false menuentryswapper.swapTrade=true menuentryswapper.swapTravel=true +menuswapperextended.castBloom=false +menuswapperextended.claimDynamite=false +menuswapperextended.collectRantz=false +menuswapperextended.dagganothKingsLadder=false +menuswapperextended.kazgar=TALK +menuswapperextended.kharedstsMemoirs=false +menuswapperextended.kittenGertrude=false +menuswapperextended.mistag=TALK +menuswapperextended.privateKBD=false +menuswapperextended.quickexitSepulchre=false +menuswapperextended.sandBert=false +menuswapperextended.snowSnowglobe=false +menuswapperextended.swapBuyPlank=false +menuswapperextended.swapDrakansMedallionLeftClick=WEAR +menuswapperextended.swapFremennikSeaBootsLeftClick=WEAR +menuswapperextended.swapGiveSword=false +menuswapperextended.swapGodWarsDoor=false +menuswapperextended.swapMinigames=false +menuswapperextended.swapMythicalCapeLeftClick=WEAR +menuswapperextended.swapNMZBarrelLeftClick=CHECK +menuswapperextended.swapPharaohSceptreLeftClick=JALSAVRAH +menuswapperextended.swapSearch=false +menuswapperextended.swapSpellbookSwapLeftClick=CAST +menuswapperextended.swapStore=false +menuswapperextended.swapStrayDog=false +menuswapperextended.swapStun=false +menuswapperextended.swapTeleCrystal=false +menuswapperextended.swapTeleportToDestination=ACTIVATE +menuswapperextended.swapTraderCrewmemberLeftClick=TALK +menuswapperextended.swapTyssSpellbook=false +menuswapperextended.swapWildernessLever=false +menuswapperextended.swapZulrahCollect=false +menuswapperextended.templeTrekkking=false +menuswapperextended.tobCrystal=false +menuswapperextended.zahurOption=TALK metronome.tickCount=1 metronome.tickVolume=96 metronome.tockVolume=0 @@ -656,7 +807,7 @@ npcindicators.highlightTrueTile=true npcindicators.ignoreDeadNpcs=true npcindicators.ignorePets=true npcindicators.npcColor=-16711681 -npcindicators.npcToHighlight=skeleton,imp,giant frog +npcindicators.npcToHighlight=skeleton,imp,giant frog, hill giant npcindicators.outlineFeather=0 npcindicators.showRespawnTimer=true objectindicators.borderWidth=2.0 @@ -728,9 +879,23 @@ prayer.replaceOrbText=false prayer.showPrayerBar=false prayer.showPrayerDoseIndicator=true prayer.showPrayerTooltip=true +ptconfig.colorGoldDrops=false +ptconfig.colorOnLoss=-65536 +ptconfig.colorOnProfit=-16711936 +ptconfig.estimateUntradeables=true +ptconfig.goldDrops=true +ptconfig.iconStyle=DYNAMIC +ptconfig.onlineOnlyRate=false +ptconfig.rememberProfit=true +ptconfig.shortDrops=true +ptconfig.unhideGoldDrops=true +ptconfig.valueMode=GE puzzlesolver.displayRemainingMoves=true puzzlesolver.displaySolution=true +puzzlesolver.dotColor=-256 +puzzlesolver.dotEndColor=-65536 puzzlesolver.drawDots=false +puzzlesolver.movesToShow=4 pyramidplunder.hideTimer=true pyramidplunder.highlightContainersColor=-256 pyramidplunder.highlightDoors=true @@ -858,9 +1023,10 @@ runecraft.showPouch=true runecraft.showRifts=true runecraft.showSoul=true runecraft.showWater=true -runelite.InventoryViewerOverlay_preferredLocation=1447\:354 +runelite.InventoryViewerOverlay_preferredPosition=BOTTOM_LEFT runelite.OpponentInfoOverlay_preferredPosition=TOP_CENTER -runelite.RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_PARENT_preferredLocation=1399\:627 +runelite.RESIZABLE_VIEWPORT_BOTTOM_LINE_INVENTORY_PARENT_preferredLocation=1575\:623 +runelite.advancedminingplugin=false runelite.animationsmoothingplugin=false runelite.attackstylesplugin=true runelite.automaticResizeType=KEEP_WINDOW_SIZE @@ -868,20 +1034,21 @@ runelite.blockExtraMouseButtons=true runelite.cameraplugin=true runelite.chatnotificationsplugin=true runelite.clientBounds=2167\:495\:2713\:1420\:c -runelite.clientMaximized=true runelite.containInScreen2=RESIZING runelite.discordplugin=false runelite.dpscounterplugin=true runelite.dragHotkey=0\:512 runelite.driftnetplugin=false runelite.emojiplugin=false -runelite.externalPlugins=shortest-path,advanced-mining,quest-helper +runelite.entityhiderplugin=false +runelite.externalPlugins=profit-tracker,shortest-path,advanced-mining,menu-swapper-extended,flipping-utilities,hotkeyable-menu-swaps,quest-helper,ge-filters runelite.flashNotification=DISABLED runelite.fontType=SMALL runelite.fpsplugin=true runelite.gameAlwaysOnTop=false runelite.gameSize=2440x1420 runelite.gpuplugin=true +runelite.hotkeyablemenuswapsplugin=false runelite.idlenotifierplugin=false runelite.infoBoxSize=35 runelite.infoBoxTextOutline=false @@ -892,12 +1059,14 @@ runelite.interfaceFontType=REGULAR runelite.interfacestylesplugin=false runelite.inventorygridplugin=false runelite.inventoryviewerplugin=true +runelite.itempricesplugin=true runelite.keyremappingplugin=true runelite.lockWindowSize=true runelite.logouttimerplugin=true +runelite.menuentryswapperplugin=true +runelite.miningplugin=true runelite.motherlodeplugin=true runelite.mtaplugin=false -runelite.miningplugin=true runelite.notificationFlashColor=1191116800 runelite.notificationFocused=false runelite.notificationGameMessage=false @@ -913,6 +1082,7 @@ runelite.panelToggleKey=123\:128 runelite.pinnedPlugins=Account,GPU runelite.rememberScreenBounds=true runelite.roofremovalplugin=true +runelite.runenergyplugin=true runelite.sidebarToggleKey=122\:128 runelite.skyboxplugin=true runelite.statusbarsplugin=true @@ -926,6 +1096,7 @@ runelite.uiWindowOpacity=100 runelite.useWikiItemPrices=true runelite.usernameInTitle=true runelite.warningOnExit=LOGGED_IN +runelite.xpupdaterplugin=false runenergy.replaceOrbText=false runenergy.ringOfEnduranceChargeMessage=true runepouch.fontcolor=-256 @@ -988,6 +1159,7 @@ shortestpath.useMagicCarpets=true shortestpath.useMagicMushtrees=true shortestpath.useMinecarts=true shortestpath.useQuetzals=true +shortestpath.useSeasonalTransports=false shortestpath.useShips=true shortestpath.useSpiritTrees=true shortestpath.useTeleportationBoxes=true @@ -1168,9 +1340,9 @@ worldhopper.ping=true worldhopper.previousKey=37\:192 worldhopper.quickhopOutOfDanger=true worldhopper.regionFilter=[] -worldhopper.showMessage=true +worldhopper.showMessage=false worldhopper.showSidebar=true -worldhopper.subscriptionFilter=FREE +worldhopper.subscriptionFilter=BOTH worldhopper.worldTypeFilter=[] worldmap.agilityCourseRooftopIcon=true worldmap.agilityCourseTooltips=true