From 4db31f37a56f9d69a9449faa446076168e4883d4 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Sun, 14 Nov 2021 13:34:31 +1030 Subject: [PATCH] added qtile and i3 configs (curently essentially defaults) and updated x related things --- .config/i3/config | 189 +++ .../qtile/__pycache__/config.cpython-39.pyc | Bin 0 -> 3793 bytes .config/qtile/config.py | 190 +++ .runelite/settings.properties | 1345 ----------------- .xinitrc | 4 +- .xprofile | 4 +- 6 files changed, 383 insertions(+), 1349 deletions(-) create mode 100644 .config/i3/config create mode 100644 .config/qtile/__pycache__/config.cpython-39.pyc create mode 100644 .config/qtile/config.py delete mode 100644 .runelite/settings.properties diff --git a/.config/i3/config b/.config/i3/config new file mode 100644 index 0000000..be58424 --- /dev/null +++ b/.config/i3/config @@ -0,0 +1,189 @@ +# This file has been auto-generated by i3-config-wizard(1). +# It will not be overwritten, so edit it as you like. +# +# Should you change your keyboard layout some time, delete +# this file and re-run i3-config-wizard(1). +# + +# i3 config file (v4) +# +# Please see https://i3wm.org/docs/userguide.html for a complete reference! + +set $mod Mod4 + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font "xft:Fira Code:antialias=true:hinting=true" + +# This font is widely installed, provides lots of unicode glyphs, right-to-left +# text rendering and scalability on retina/hidpi displays (thanks to pango). +#font pango:DejaVu Sans Mono 8 + +# Start XDG autostart .desktop files using dex. See also +# https://wiki.archlinux.org/index.php/XDG_Autostart +exec --no-startup-id dex --autostart --environment i3 + +# The combination of xss-lock, nm-applet and pactl is a popular choice, so +# they are included here as an example. Modify as you see fit. + +# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the +# screen before suspend. Use loginctl lock-session to lock your screen. +exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork + +# NetworkManager is the most popular way to manage wireless networks on Linux, +# and nm-applet is a desktop environment-independent system tray GUI for it. +exec --no-startup-id nm-applet + +# Use pactl to adjust volume in PulseAudio. +set $refresh_i3status killall -SIGUSR1 i3status +bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status +bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status +bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status +bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +bindsym $mod+Shift+Return exec alacritty + +# kill focused window +bindsym $mod+Shift+j kill + +# start dmenu (a program launcher) +bindsym $mod+a exec --no-startup-id "dmenu_run -bw 3 -c -l 15 -h 26" +# A more modern dmenu replacement is rofi: +# bindcode $mod+40 exec "rofi -modi drun,run -show drun" +# There also is i3-dmenu-desktop which only displays applications shipping a +# .desktop file. It is a wrapper around dmenu, so you need that installed. +# bindcode $mod+40 exec --no-startup-id i3-dmenu-desktop + +# change focus +bindsym $mod+h focus left +bindsym $mod+t focus down +bindsym $mod+n focus up +bindsym $mod+s focus right + +# alternatively, you can use the cursor keys: +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +# move focused window +bindsym $mod+Shift+h move left +bindsym $mod+Shift+t move down +bindsym $mod+Shift+n move up +bindsym $mod+Shift+s move right + +# alternatively, you can use the cursor keys: +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Right move right + +# split in horizontal orientation +bindsym $mod+d split h + +# split in vertical orientation +bindsym $mod+k split v + +# enter fullscreen mode for the focused container +bindsym $mod+u fullscreen toggle + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+apostrophe layout stacking +bindsym $mod+comma layout tabbed +bindsym $mod+period layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +bindsym $mod+space focus mode_toggle + +# focus the parent container +bindsym $mod+Return focus parent + +# focus the child container +#bindsym $mod+d focus child + +# Define names for default workspaces for which we configure key bindings later on. +# We use variables to avoid repeating the names in multiple places. +set $ws1 "1" +set $ws2 "2" +set $ws3 "3" +set $ws4 "4" +set $ws5 "5" +set $ws6 "6" +set $ws7 "7" +set $ws8 "8" +set $ws9 "9" +set $ws10 "10" + +# switch to workspace +bindsym $mod+1 workspace number $ws1 +bindsym $mod+2 workspace number $ws2 +bindsym $mod+3 workspace number $ws3 +bindsym $mod+4 workspace number $ws4 +bindsym $mod+5 workspace number $ws5 +bindsym $mod+6 workspace number $ws6 +bindsym $mod+7 workspace number $ws7 +bindsym $mod+8 workspace number $ws8 +bindsym $mod+9 workspace number $ws9 +bindsym $mod+0 workspace number $ws10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace number $ws1 +bindsym $mod+Shift+2 move container to workspace number $ws2 +bindsym $mod+Shift+3 move container to workspace number $ws3 +bindsym $mod+Shift+4 move container to workspace number $ws4 +bindsym $mod+Shift+5 move container to workspace number $ws5 +bindsym $mod+Shift+6 move container to workspace number $ws6 +bindsym $mod+Shift+7 move container to workspace number $ws7 +bindsym $mod+Shift+8 move container to workspace number $ws8 +bindsym $mod+Shift+9 move container to workspace number $ws9 +bindsym $mod+Shift+0 move container to workspace number $ws10 + +# reload the configuration file +bindsym $mod+Shift+comma reload +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+apostrophe restart +# exit i3 (logs you out of your X session) +bindsym $mod+Shift+period exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'" + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym h resize shrink width 10 px or 10 ppt + bindsym t resize grow height 10 px or 10 ppt + bindsym n resize shrink height 10 px or 10 ppt + bindsym s resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape or $mod+r + bindsym Return mode "default" + bindsym Escape mode "default" + bindsym $mod+p mode "default" +} + +bindsym $mod+p mode "resize" + +# Start i3bar to display a workspace bar (plus the system information i3status +# finds out, if available) +bar { + status_command i3status +} + +gaps inner 8 +gaps outer 8 diff --git a/.config/qtile/__pycache__/config.cpython-39.pyc b/.config/qtile/__pycache__/config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eabc963f7e5a1dfa99a5696007dddebcc5399f25 GIT binary patch literal 3793 zcmZuzTXWmS6~=-f2vH;@QL-%GV)!B_vZISF-|aY#B-?RpIkqL+2|5`T;x0i*xX=qA zv{2{Ced&Xy%}jp))wlegKJ9Ct{L-0DW;(5t)IDcGQdB0u@ZjvXXV0EJx20V!7ZrFG z|N3XUeN0jQfrG*4Fbr3+c~_=aWp zL)MUAw2J<)HSCwHlAPDPvR|<(lFxf1{-`wyyl#!L(Km`!WkojT5L#fBO|3J&t5Aau z?Py)JDA5T(hX>G-L=OO39zZJ+odk4b03DU+K|sfPD6KkbcfTpX$M@mcj)wrB*oS9( z9tQltK0Mp?2;h@_{9s@IQNXA6;hFwpfFIh2XZk+?{O~?J(|;WBBRw3vbyS|p1oT)B zm8beZ;wJz<-orr}(9TI#-6hlCQBur+X;H(@cZx89>kMLq7!c zLqI?3p|BT9egxPIV$K0;hMuM8{;1H8SCluzI?K+kDBt|vI>%-@A7?RU=Qd|y*E#$i zQabancDA#CBe1ud33#@y-098p$k91EzoXKHK}kp5g)IGx`f{CVn-}PLdI2n7q!)Ko zrgau~6`&U-y(H;nNw4fGj&5CL*XSjBnO>n+cXHNscD-|BSFvug63cZyVfoH2kj-~K zmGrixpCR2`qSxqkm(UyZCYFqB68Q8Ied}l?jxI>re$_|0?UD&xu z@9e7d?hbK?b&nac67I2vD^e7}O<*Yt&D(FbeF%vW!*qs$PYJ#?dZCMR+mHW#{QZ-+@N^tMYK z7SHG+zwEj7EupP&+Y$MDJWN_5_keAS{Hh(-n?hf!bH)NxhLF*oPYF-UU|DSQ*nASZ9uwqcT3Kr*F&-p?(&@F94FlV(hrTaOirm0~ zaf^q3D+XPdaCL%N*?m;_!Ud-+!!Mcu;wZ0`Z%W^hSb0s}knh!(+M4nM?epoZ(rzeFSFv%y?zTNH14Py=9C>((<^`y>1m zegcR!bpFEP#Y>m3T)mc7*V-;5JjT<(Dlq@>-8!UiDUxtaV(Ga(p);o6PxrpB23Mzr zQ}oKE#-#=@R~w7a2jAjp;T+YCkW4Jn&G{6{onAN3N zcDS1CX0q*rEyHL>ZSUs7_Aj(8=v1Nrp~Jo;4A@$>Bj7N7>OKV#whhe_GpH5u<9Ki# zG_ip41svq%4EQ08N^BU%6x!1x~3TxXDR2^K~%U%fg`OuRDuJt>w+*lN{(?#L{ zWO=O>MsAFo%jCocQi8tRhs78QVTaihFi=1?oyrD>6}335H8{4TydNeJ6IGh|xCRcd zZGe%Ci?JSNw_4p2s5U~+gQSp)vgRkoGL2Fl)E@p78LlTh3VE$<^Oi8~Vhy30<6S>y zc6C*b^iI)Bj}bdT>k`k)PAv{+O%@KE{X?kP_1OIuREB{V=PYYW31_vQm&#HD{Izj? z%t*cM|EeL%>&L`YF>XQ~L3Q6c0;A~PKuYQaF-eJ(RE_A`B+1@UqQ2MiRix@5ozezJ z89zlP^^BX$O^`_yHB@lr-?fE`Y7kAGBE|Qbb`alM1FxzR{YPz7CG!16&l@=v zWC4}0rfToioc^<>gKdBmiT*EjO#LV5eXkuEB?efQ(dti{p^@GTdjF^9j9*mE_*u;x WKdHL$PAwS!RSn}mMo~&>TJisDYpoLi literal 0 HcmV?d00001 diff --git a/.config/qtile/config.py b/.config/qtile/config.py new file mode 100644 index 0000000..5ac7a5c --- /dev/null +++ b/.config/qtile/config.py @@ -0,0 +1,190 @@ +# Copyright (c) 2010 Aldo Cortesi +# Copyright (c) 2010, 2014 dequis +# Copyright (c) 2012 Randall Ma +# Copyright (c) 2012-2014 Tycho Andersen +# Copyright (c) 2012 Craig Barnes +# Copyright (c) 2013 horsik +# Copyright (c) 2013 Tao Sauvage +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +from typing import List # noqa: F401 + +from libqtile import bar, layout, widget +from libqtile.config import Click, Drag, Group, Key, Match, Screen +from libqtile.lazy import lazy +from libqtile.utils import guess_terminal + +mod = "mod4" +terminal = guess_terminal() + +keys = [ + # Switch between windows + Key([mod], "h", lazy.layout.left(), desc="Move focus to left"), + Key([mod], "l", lazy.layout.right(), desc="Move focus to right"), + Key([mod], "j", lazy.layout.down(), desc="Move focus down"), + Key([mod], "k", lazy.layout.up(), desc="Move focus up"), + Key([mod], "space", lazy.layout.next(), + desc="Move window focus to other window"), + + # Move windows between left/right columns or move up/down in current stack. + # Moving out of range in Columns layout will create new column. + Key([mod, "shift"], "h", lazy.layout.shuffle_left(), + desc="Move window to the left"), + Key([mod, "shift"], "l", lazy.layout.shuffle_right(), + desc="Move window to the right"), + Key([mod, "shift"], "j", lazy.layout.shuffle_down(), + desc="Move window down"), + Key([mod, "shift"], "k", lazy.layout.shuffle_up(), desc="Move window up"), + + # Grow windows. If current window is on the edge of screen and direction + # will be to screen edge - window would shrink. + Key([mod, "control"], "h", lazy.layout.grow_left(), + desc="Grow window to the left"), + Key([mod, "control"], "l", lazy.layout.grow_right(), + desc="Grow window to the right"), + Key([mod, "control"], "j", lazy.layout.grow_down(), + desc="Grow window down"), + Key([mod, "control"], "k", lazy.layout.grow_up(), desc="Grow window up"), + Key([mod], "n", lazy.layout.normalize(), desc="Reset all window sizes"), + + # Toggle between split and unsplit sides of stack. + # Split = all windows displayed + # Unsplit = 1 window displayed, like Max layout, but still with + # multiple stack panes + Key([mod, "shift"], "Return", lazy.layout.toggle_split(), + desc="Toggle between split and unsplit sides of stack"), + Key([mod], "Return", lazy.spawn(terminal), desc="Launch terminal"), + + # Toggle between different layouts as defined below + Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), + Key([mod], "w", lazy.window.kill(), desc="Kill focused window"), + + Key([mod, "control"], "r", lazy.restart(), desc="Restart Qtile"), + Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"), + Key([mod], "r", lazy.spawncmd(), + desc="Spawn a command using a prompt widget"), +] + +groups = [Group(i) for i in "123456789"] + +for i in groups: + keys.extend([ + # mod1 + letter of group = switch to group + Key([mod], i.name, lazy.group[i.name].toscreen(), + desc="Switch to group {}".format(i.name)), + + # mod1 + shift + letter of group = switch to & move focused window to group + Key([mod, "shift"], i.name, lazy.window.togroup(i.name, switch_group=True), + desc="Switch to & move focused window to group {}".format(i.name)), + # Or, use below if you prefer not to switch to that group. + # # mod1 + shift + letter of group = move focused window to group + # Key([mod, "shift"], i.name, lazy.window.togroup(i.name), + # desc="move focused window to group {}".format(i.name)), + ]) + +layouts = [ + layout.Columns(border_focus_stack=['#d75f5f', '#8f3d3d'], border_width=4), + layout.Max(), + # Try more layouts by unleashing below layouts. + # layout.Stack(num_stacks=2), + # layout.Bsp(), + layout.Matrix(), + # layout.MonadTall(), + # layout.MonadWide(), + # layout.RatioTile(), + layout.Tile(), + # layout.TreeTab(), + layout.VerticalTile(), + layout.Zoomy(), +] + +widget_defaults = dict( + font='sans', + fontsize=12, + padding=3, +) +extension_defaults = widget_defaults.copy() + +screens = [ + Screen( + bottom=bar.Bar( + [ + widget.CurrentLayout(), + widget.GroupBox(), + widget.Prompt(), + widget.WindowName(), + widget.Chord( + chords_colors={ + 'launch': ("#ff0000", "#ffffff"), + }, + name_transform=lambda name: name.upper(), + ), + widget.TextBox("default config", name="default"), + widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"), + widget.Systray(), + widget.Clock(format='%Y-%m-%d %a %I:%M %p'), + widget.QuickExit(), + ], + 24, + ), + ), +] + +# Drag floating layouts. +mouse = [ + Drag([mod], "Button1", lazy.window.set_position_floating(), + start=lazy.window.get_position()), + Drag([mod], "Button3", lazy.window.set_size_floating(), + start=lazy.window.get_size()), + Click([mod], "Button2", lazy.window.bring_to_front()) +] + +dgroups_key_binder = None +dgroups_app_rules = [] # type: List +follow_mouse_focus = True +bring_front_click = False +cursor_warp = False +floating_layout = layout.Floating(float_rules=[ + # Run the utility of `xprop` to see the wm class and name of an X client. + *layout.Floating.default_float_rules, + Match(wm_class='confirmreset'), # gitk + Match(wm_class='makebranch'), # gitk + Match(wm_class='maketag'), # gitk + Match(wm_class='ssh-askpass'), # ssh-askpass + Match(title='branchdialog'), # gitk + Match(title='pinentry'), # GPG key password entry +]) +auto_fullscreen = True +focus_on_window_activation = "smart" +reconfigure_screens = True + +# If things like steam games want to auto-minimize themselves when losing +# focus, should we respect this or not? +auto_minimize = True + +# XXX: Gasp! We're lying here. In fact, nobody really uses or cares about this +# string besides java UI toolkits; you can see several discussions on the +# mailing lists, GitHub issues, and other WM documentation that suggest setting +# this string if your java app doesn't work correctly. We may as well just lie +# and say that we're a working one by default. +# +# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in +# java that happens to be on java's whitelist. +wmname = "LG3D" diff --git a/.runelite/settings.properties b/.runelite/settings.properties deleted file mode 100644 index 0acdceb..0000000 --- a/.runelite/settings.properties +++ /dev/null @@ -1,1345 +0,0 @@ -#RuneLite configuration -#Tue Oct 19 17:04:58 ACDT 2021 -statusbars.rightBarMode=PRAYER -runelite.mtaplugin=true -party.includeSelf=false -grandexchange.rsprofile.pY9kxn0R.buylimit.1540=2021-10-04T10\:03\:46.757007134Z -killcount.rsprofile.pY9kxn0R.obor=2 -grounditems.textOutline=false -chatfilter.filterGameChat=false -runelite.crowdsourcingplugin=true -timetracking.rsprofile.pY9kxn0R.4922.7910=0\:1634625212 -implings.showmagpie=NONE -interacthighlight.objectHoverHighlightColor=-1878982657 -fishing.statTimeout=5 -groundMarker.markerColor=-256 -worldhopper.subscriptionFilter=BOTH -worldmap.minigameTooltip=true -banktags.useTabs=true -itemCharge.showWaterskinCharges=true -timetracking.rsprofile.pY9kxn0R.4922.7907=0\:1634625212 -timetracking.rsprofile.pY9kxn0R.4922.7906=32\:1634625212 -timetracking.rsprofile.pY9kxn0R.4922.7905=46\:1634625236 -music.musicVolume=1 -runelite.combatlevelplugin=true -timetracking.rsprofile.pY9kxn0R.4922.7904=45\:1634625212 -grandexchange.quickLookup=true -chatcommands.bh=true -timetracking.rsprofile.pY9kxn0R.4922.7909=0\:1634625212 -hunterplugin.hexColorEmptyTrap=-65536 -timetracking.rsprofile.pY9kxn0R.botanist=false -runelite.hiscoreplugin=true -screenshot.notifyWhenTaken=true -groundMarker.drawOnMinimap=false -runecraft.showFire=true -poh.showRepairStand=true -statusbars.hideAfterCombatDelay=0 -grandexchange.enableNotifications=true -timetracking.rsprofile.pY9kxn0R.autoweed=0 -agility.markHighlight=-65536 -xpglobes.showXpHour=true -timers.showTzhaarTimers=true -npcindicators.highlightStyle=HULL -xpglobes.Progress\ arc\ width=2 -fpscontrol.limitFpsUnfocused=false -runecraft.showAir=true -party.sounds=true -raids.uploadScreenshot=CLIPBOARD -wintertodt.notifyCold=INTERRUPT -itemCharge.showAmuletOfChemistryCharges=true -grandexchange.rsprofile.pY9kxn0R.buylimit.2890=2021-09-15T05\:43\:37.332706752Z -objectindicators.rememberObjectColors=false -grounditems.notifyHighlightedDrops=false -music.soundEffectVolume=1 -runelite.runenergyplugin=true -raids.layoutMessage=false -driftnet.showNetStatus=true -nightmareZone.absorptionnotification=true -killcount.rsprofile.pY9kxn0R.seers'\ village\ rooftop=682 -hd.objectTextures=true -timetracking.rsprofile.pY9kxn0R.10551.4771=0\:1601205167 -screenshot.ccKick=false -xpdrop.meleePrayerColor=-15368019 -screenshot.playerDeath=false -menuentryswapper.swapGauntlet=false -entityhider.hideProjectiles=false -grandexchange.enableOsbPrices=false -runelite.instancemapplugin=true -timetracking.rsprofile.pY9kxn0R.14651.4771=0\:1632715049 -runelite.itempricesplugin=true -runelite.statusbarsplugin=true -runelite.questlistplugin=true -itemCharge.showBraceletOfSlaughterCharges=true -chatfilter.collapseGameChat=false -grandexchange.rsprofile.pY9kxn0R.buylimit.1550=2021-10-05T10\:19\:00.117304209Z -randomevents.notifyMoM=false -screenshot.includeFrame=true -runelite.opponentinfoplugin=true -music.granularSliders=true -kingdomofmiscellania.cofferThreshold=7500000 -timetracking.rsprofile.pY9kxn0R.14651.4773=0\:1632715049 -timetracking.rsprofile.pY9kxn0R.14651.4772=0\:1632715049 -playerindicators.drawClanMemberNames=true -runelite.notificationRequestFocus=OFF -timetracking.rsprofile.pY9kxn0R.4922.7912=185\:1634625212 -timetracking.rsprofile.pY9kxn0R.4922.7911=0\:1634625212 -teamCapes.minimumCapeCount=1 -hd.fogDepth=5 -idlenotifier.oxygen=0 -boosts.notifyOnBoost=true -implings.magpieColor=-7434733 -entityhider.hideClanMates=false -runecraft.showNature=true -menuentryswapper.swapQuick=true -discord.showMainMenu=true -clanchat.clanCounter=false -killcount.rsprofile.Mhegw9dN.obor=2 -runecraft.hightlightDarkMage=true -menuentryswapper.shiftClickCustomization=true -personalbest.rsprofile.pY9kxn0R.hespori=145.0 -runelite.examineplugin=true -tearsofguthix.blueTearsColor=1677787135 -chatcommands.lms=true -menuentryswapper.swapTemporossLeave=false -tileindicators.destinationTileBorderWidth=2.0 -screenshot.uploadScreenshot=NEITHER -worldmap.fairyRingTooltips=true -grounditems.defaultColor=-1 -metronome.tickVolume=96 -timetracking.rsprofile.Mhegw9dN.6967.4774=0\:1602315617 -prayer.prayerBarHideIfNotPraying=true -timetracking.rsprofile.Mhegw9dN.6967.4773=0\:1602315617 -timetracking.rsprofile.Mhegw9dN.6967.4772=0\:1602315617 -timetracking.rsprofile.Mhegw9dN.6967.4771=0\:1602315617 -worldmap.runecraftingAltarIcon=true -entityhider.hidePlayers=true -timetracking.rsprofile.Mhegw9dN.botanist=false -runecraft.showSoul=true -motherlode.showOresFound=true -clanchat.privateMessageIcons=false -chatfilter.filterClan=false -textrecolor.opaquePrivateMessageReceivedHighlight=-16767101 -menuentryswapper.swapPrayerBook=false -gpu.uiScalingMode=LINEAR -xpTracker.progressBarTooltipLabel=TIME_TO_LEVEL -chatcommands.gc=true -woodcutting.showRedwoods=true -runelite.timetrackingplugin=true -runelite.grounditemsplugin=true -grounditems.menuHighlightMode=NAME -timetracking.rsprofile.Mhegw9dN.12851.4771=3\:1601691847 -entityhider.hideLocalPlayer=false -entityhider.hideNPCs2D=false -tileindicators.highlightCurrentColor=-16711681 -cannon.showEmptyCannonNotification=true -pyramidplunder.highlightUrnsFloor=9 -zoom.invertYaw=false -screenshot.valuableDrop=false -discord.showSkillActivity=true -worldmap.miningSiteTooltips=true -grandexchange.rsprofile.pY9kxn0R.buylimit.1521=2021-09-28T12\:40\:26.998884251Z -menuentryswapper.swapHerbs=false -itemstat.absolute=true -itemstat.colorBetterUncapped=-13373901 -screenshot.collectionLogEntries=true -timetracking.rsprofile.pY9kxn0R.13622.4771=6\:1633485767 -hd.fogDepthMode=DYNAMIC -screenshot.kills=false -menuentryswapper.bankDepositShiftClick=OFF -implings.earthColor=-12691904 -runelite.bosstimersplugin=true -textrecolor.transparentClanMessageHighlight=-1 -xpglobes.Orb\ duration=10 -zoom.rightClickMovesCamera=false -menuentryswapper.swapGEItemCollect=DEFAULT -inventorygrid.dragDelay=0 -menuentryswapper.swapBait=false -groundMarker.showImportExport=true -attackIndicator.warnForStrength=false -runelite.tearsofguthixplugin=true -runelite.smeltingplugin=true -npcindicators.fillColor=335609855 -itemCharge.veryLowWarningColor=-65536 -runecraft.showLaw=true -herbiboar.showClickboxes=false -runelite.fishingplugin=true -runelite.friendschatplugin=true -timers.showAntiFire=true -defaultworld.useLastWorld=false -attackIndicator.warnForDefensive=false -chatnotification.notifyOnPM=false -itemidentification.showPlanks=false -woodcutting.showNestNotification=true -slayer.weaknessPrompt=true -implings.showname=false -attackIndicator.warnForMagic=false -mousehighlight.uiTooltip=true -fishing.flyingFishNotification=true -timetracking.rsprofile.pY9kxn0R.9781.4772=125\:1634603810 -music.muteOwnAreaSounds=false -timetracking.rsprofile.pY9kxn0R.9781.4771=21\:1634603810 -chathistory.clearHistory=true -textrecolor.transparentClanChatGuestMessageHighlight=-1 -attackIndicator.warnForRanged=false -grounditems.showHighlightedOnly=false -grandexchange.rsprofile.pY9kxn0R.buylimit.5982=2020-10-03T15\:45\:44.177715Z -raids.showLootValue=true -party.recolorNames=true -agility.highlightPortals=true -roofremoval.removePosition=true -driftnet.untaggedFishColor=-16711681 -combatlevel.wildernessAttackLevelRange=true -runelite.worldmapplugin=true -groundMarker.fillOpacity=50 -timetracking.rsprofile.Mhegw9dN.birdhouse.1629=0\:1601185267 -blastmine.hexWarningColor=-2542080 -timetracking.rsprofile.Mhegw9dN.birdhouse.1628=0\:1601185267 -screenshot.hotkey=0\:0 -timetracking.rsprofile.Mhegw9dN.birdhouse.1627=0\:1601185267 -poh.showXericsTalisman=true -runelite.barrowsplugin=true -timetracking.rsprofile.Mhegw9dN.birdhouse.1626=0\:1601185267 -worldmap.miscellaneousTeleportIcon=true -menuentryswapper.swapJewelleryBox=false -grandexchange.rsprofile.pY9kxn0R.buylimit.556=2021-09-14T12\:45\:41.283738580Z -npcUnaggroArea.npcUnaggroAreaColor=-256 -rsprofile.rsprofile.AzUtpJqn.type=STANDARD -worldhopper.showSidebar=true -timetracking.rsprofile.pY9kxn0R.12854.4771=21\:1634461915 -grandexchange.rsprofile.pY9kxn0R.buylimit.554=2021-09-14T12\:46\:19.722372340Z -dpscounter.showDamage=false -runelite.barbarianassaultplugin=true -idlenotifier.spec=0 -runelite.chatcommandsplugin=true -wintertodt.showOverlay=true -menuentryswapper.swapCollectMiscellania=false -runelite.musicplugin=true -blastfurnace.showConveyorBelt=false -timers.showCannon=true -menuentryswapper.bankWithdrawShiftClick=OFF -herbiboar.showTrail=true -runelite.raidsplugin=true -timers.showPickpocketStun=true -prayer.showPrayerDoseIndicator=true -grounditems.notifyTier=OFF -hd.levelOfDetail=MEDIUM -grandexchange.rsprofile.pY9kxn0R.buylimit.2499=2021-09-15T05\:49\:36.726141248Z -xpglobes.Orb\ size=40 -timetracking.activeTab=OVERVIEW -menuentryswapper.claimSlime=true -grounditems.recolorMenuHiddenItems=false -itemstat.colorNoChange=-1118482 -menuentryswapper.swapMorytaniaLegs=WEAR -wintertodt.notifyBrazierOut=true -npcUnaggroArea.duration=-19532059 -blastmine.showTimerOverlay=true -nightmareZone.moveoverlay=true -motherlode.showMiningStats=true -music.muteOtherAreaEnvironmentSounds=false -dailytaskindicators.showStaves=true -runelite.groundmarkerplugin=true -npcindicators.highlightOutline=false -implings.crystalColor=-10634030 -music.muteOtherAreaSounds=false -interfaceStyles.hdMenu=false -inventorytags.fillOpacity=50 -gpu.smoothBanding=false -runelite.ammoplugin=true -timetracking.rsprofile.pY9kxn0R.12596.4771=0\:1603800617 -xpglobes.showVirtualLevel=false -grounditems.highlightValueCalculation=HIGHEST -screenshot.displayDate=true -textrecolor.transparentPublicChatHighlight=-1 -interfaceStyles.hdHealthBars=false -grandexchange.rsprofile.pY9kxn0R.buylimit.560=2021-09-14T12\:29\:43.820175720Z -grandexchange.rsprofile.pY9kxn0R.buylimit.2487=2021-09-15T05\:49\:48.719904961Z -chatcommands.duels=true -timetracking.rsprofile.Mhegw9dN.10290.4771=0\:1603791506 -runelite.wintertodtplugin=true -grounditems.dontHideUntradeables=true -hunterplugin.hexColorOpenTrap=-256 -xpglobes.enableTooltips=true -randomevents.notifyQuiz=false -runelite.fairyringplugin=true -runelite.notificationFocused=false -itemCharge.showBellowCharges=true -poh.showSpellbook=true -grandexchange.rsprofile.pY9kxn0R.buylimit.2493=2021-09-15T05\:43\:48.716719244Z -itemCharge.showBindingNecklaceCharges=true -itemCharge.ringOfForging=-1 -loottracker.npcKillChatMessage=false -inventoryViewer.toggleKeybind=0\:0 -interacthighlight.npcAttackHoverHighlightColor=-1862271232 -menuentryswapper.swapHarpoon=false -hd.groundFog=true -stretchedmode.integerScaling=false -gpu.brightTextures=false -runelite.fontType=SMALL -kourendLibrary.showTargetHintArrow=true -timetracking.rsprofile.pY9kxn0R.11317.4771=0\:1632716956 -mining.statTimeout=5 -timetracking.rsprofile.Mhegw9dN.12083.4773=32\:1620357753 -chatcommands.price=true -timetracking.rsprofile.Mhegw9dN.12083.4774=72\:1620357753 -keyremapping.f10=48\:0 -timetracking.rsprofile.Mhegw9dN.12083.4775=176\:1620357753 -textrecolor.transparentPrivateMessageReceivedHighlight=-1 -keyremapping.f12=61\:0 -keyremapping.f11=45\:0 -grandexchange.rsprofile.pY9kxn0R.buylimit.1347=2021-09-15T05\:43\:59.519919087Z -menuentryswapper.swapBanker=true -grounditems.showLootbeamForHighlighted=false -objectindicators.markerColor=-256 -worldhopper.quickhopOutOfDanger=true -timetracking.rsprofile.Mhegw9dN.11056.4771=0\:1601807130 -worldmap.arceuusSpellbookIcon=true -chatcommands.lvl=true -worldhopper.quickHopRegionFilter=NONE -fishing.overlayColor=-16711681 -runelite.randomeventplugin=false -timers.showVengeance=true -corp.showDamage=true -runelite.hdplugin=false -playerindicators.nonClanMemberColor=-65536 -boosts.relativeBoost=false -blastmine.showRockIconOverlay=true -worldmap.agilityShortcutIcon=true -screenshot.rewards=true -loottracker.saveLoot=true -hd.macosIntelWorkaround=false -xpTracker.skillTabOverlayMenuOptions=true -grounditems.collapseEntries=false -motherlode.showBrokenStruts=true -poh.showPortals=true -motherlode.showMiningState=true -inventorytags.tagUnderline=false -rsprofile.rsprofile.pY9kxn0R.type=STANDARD -raids.screenshotHotkey=0\:0 -worldmap.hunterAreaTooltips=true -blastmine.hexTimerColor=-2542080 -xpglobes.enableCustomArcColor=false -runelite.friendlistplugin=true -attackIndicator.alwaysShowStyle=true -dailytaskindicators.showEssence=false -rsprofile.rsprofile.pY9kxn0R.loginHash=pY9kxn0RzI-3xbrb02rg_KaOEdDcetW3PrrWTIy1yzb1k5s2_pPmcRT3uTPzg5jEOtIM66lhA6ESYuxfgLrp0A\=\= -itemidentification.showGems=false -runelite.xpdropplugin=true -fpscontrol.maxFpsUnfocused=50 -cooking.fermentTimer=true -menuentryswapper.swapHardWoodGrove=true -tileindicators.highlightDestinationColor=-8355712 -dailytaskindicators.showRunes=false -kourendLibrary.showTutorialOverlay=true -wintertodt.notifySnowfall=INTERRUPT -mining.showMiningStats=true -timetracking.sortOrder=NONE -textrecolor.opaqueClanGuestInfoHighlight=-65536 -runelite.interfaceFontType=REGULAR -runelite.boostsplugin=true -itemstat.colorWorse=-1166541 -slayer.highlightTargets=false -fishing.harpoonfishOverlayColor=-16711936 -menuentryswapper.swapStartMinigame=true -implings.youngColor=-5266296 -slayer.rsprofile.pY9kxn0R.points=162 -interfaceStyles.rsCrossSprites=false -rsprofile.rsprofile.Mhegw9dN.loginHash=Mhegw9dNBkxb0XfvI_b8dtGjniAveDI1S8Bm_7Xm4ueUJLGFBiPAT_LCA8vAHXEZkt3D-Arne-fN7gsYgB2gpg\=\= -menuentryswapper.swapDesertAmulet=WEAR -worldmap.standardSpellbookIcon=true -chatfilter.collapsePlayerChat=false -grandexchange.highlightSearchMatch=true -slayer.rsprofile.Mhegw9dN.initialAmount=130 -interacthighlight.npcShowInteract=true -xpdrop.fakeXpDropDelay=0 -hd.saturation=DEFAULT -pyramidplunder.highlightDoors=true -timers.showImbuedHeart=true -slayer.targetColor=-65536 -itemprices.showGEPrice=true -gpu.fogDepth=0 -npcUnaggroArea.center1=1236\:3733\:0 -pyramidplunder.showExactTimer=true -chatfilter.filterClanChat=false -clanchat.showJoinLeave=false -menuentryswapper.swapRockCake=false -hd.projectileLights=true -agility.highlightSepulchreNpcs=true -regenmeter.showSpecial=true -itemCharge.showDodgyCount=true -mousehighlight.chatboxTooltip=true -worldmap.fairyRingIcon=true -keyremapping.esc=27\:0 -roofremoval.removeBetween=true -rsprofile.rsprofile.wteQmrWW.loginHash=wteQmrWWIpCgrpQifGEFtszNBL3nvwJubpX8O8JoTzyOdq7fYPvJYfL7hG20QN-6CrjWf8UptLP3AZ11zsXeEg\=\= -keyremapping.left=65\:0 -killcount.rsprofile.pY9kxn0R.agility\ pyramid=2 -timetracking.rsprofile.Mhegw9dN.4922.4775=0\:1601887766 -party.pings=true -timetracking.rsprofile.Mhegw9dN.13106.4771=0\:1603703590 -timetracking.rsprofile.Mhegw9dN.4922.4774=0\:1601887766 -runelite.inventorygridplugin=true -timetracking.rsprofile.pY9kxn0R.14391.4773=28\:1633834543 -timetracking.rsprofile.pY9kxn0R.14391.4774=68\:1633834523 -randomevents.notifyDemon=false -timetracking.rsprofile.Mhegw9dN.4922.4773=0\:1601887766 -timetracking.rsprofile.pY9kxn0R.14391.4775=183\:1633834568 -bank.rightClickBankInventory=false -timetracking.rsprofile.Mhegw9dN.4922.4772=0\:1601887766 -barrows.showPrayerDrainTimer=true -timetracking.rsprofile.pY9kxn0R.14391.4771=61\:1633834447 -chathistory.pmTargetCycling=true -timetracking.rsprofile.pY9kxn0R.14391.4772=60\:1633834447 -poh.showMythicalCape=true -itemCharge.showAmuletOfBountyCharges=true -npcUnaggroArea.center2=1247\:3731\:0 -grounditems.hideUnderValue=0 -menuentryswapper.swapEnchant=true -implings.showbaby=NONE -runepouch.runeicons=true -runelite.xptrackerplugin=true -reportButton.time=LOGIN_TIME -menuentryswapper.swapPick=false -runelite.cannonplugin=true -grandexchange.enableGELimitReset=true -chatnotification.notifyOnOwnName=false -runelite.npcindicatorsplugin=true -timers.showDfsSpecial=true -hiscore.virtualLevels=true -runecraft.showDeath=true -xpglobes.showXpLeft=true -dailytaskindicators.showHerbBoxes=true -runelite.partyplugin=true -poh.showPools=true -motherlode.showVeins=true -timetracking.rsprofile.pY9kxn0R.6967.4775=181\:1634372311 -runecraft.degradingNotification=true -itemprices.showEA=true -driftnet.highlightUntaggedFish=true -timers.showDivine=true -pyramidplunder.highlightSpeartrapColor=-14336 -timetracking.rsprofile.pY9kxn0R.11058.4772=0\:1633414096 -grounditems.highValuePrice=1000000 -implings.showninja=NONE -prayer.prayerIndicatorOverheads=false -tileindicators.highlightHoveredTile=false -timetracking.rsprofile.pY9kxn0R.11058.4771=125\:1633414096 -runelite.gameAlwaysOnTop=false -timetracking.rsprofile.pY9kxn0R.farmTickOffsetPrecision=40 -fishing.trawlerContribution=true -prayer.prayerFlickAlwaysOn=false -textrecolor.opaqueClanMessageHighlight=-16777216 -nightmareZone.recurrentdamagenotification=false -npcindicators.borderWidth=2.0 -slayer.itemoverlay=true -chatcommands.clue=true -kingdomofmiscellania.sendNotifications=false -roofremoval.removeHovered=true -worldmap.jewelleryIcon=true -chatfilter.filterLogin=false -tileindicators.hoveredTileBorderWidth=2.0 -hd.groundTextures=true -worldmap.questStartTooltips=true -feed.includeTweets=true -nightmareZone.overloadearlywarningseconds=10 -dailytaskindicators.showDynamite=false -screenshot.valuableDropThreshold=0 -dailytaskindicators.showBonemeal=false -itemCharge.dodgyNotification=true -hd.flashingEffects=false -tithefarmplugin.hexColorGrown=-16721664 -runelite.lockWindowSize=false -attackIndicator.warnForAttack=false -boosts.displayNextDebuffChange=NEVER -mta.alchemy=true -fairyrings.autoOpen=true -runelite.wikiplugin=true -runelite.timersplugin=true -slayer.rsprofile.Mhegw9dN.amount=130 -barrows.deadBrotherLocColor=-65536 -boosts.boostThreshold=0 -randomevents.notifyBob=false -runelite.infoplugin=true -menuentryswapper.shopSell=OFF -playerindicators.colorPlayerMenu=true -timetracking.rsprofile.pY9kxn0R.farmTickOffset=11 -grandexchange.geSearchMode=DEFAULT -xpglobes.Progress\ orb\ outline\ color=-16777216 -grounditems.hiddenColor=-8355712 -xpglobes.showActionsLeft=true -timetracking.defaultTimerMinutes=5 -interacthighlight.objectInteractHighlightColor=-1862336512 -textrecolor.opaqueGameMessageHighlight=-1109984 -runelite.automaticResizeType=KEEP_GAME_SIZE -itemprices.hideInventory=true -agility.lapsToLevel=true -animationSmoothing.smoothNpcAnimations=true -rsprofile.rsprofile.wteQmrWW.displayName=hmdl123 -itemstat.showStatsInBank=true -itemCharge.showExpeditiousBraceletCharges=true -itemCharge.amuletOfChemistry=-1 -timetracking.rsprofile.pY9kxn0R.9777.4771=125\:1632717168 -interacthighlight.borderWidth=4 -lowmemory.lowDetail=true -opponentinfo.hitpointsDisplayStyle=HITPOINTS -xpdrop.hideSkillIcons=false -grandexchange.rsprofile.pY9kxn0R.buylimit.3032=2020-10-04T13\:43\:06.096563Z -grandexchange.rsprofile.pY9kxn0R.buylimit.536=2021-10-06T07\:39\:36.836399008Z -randomevents.removeMenuOptions=true -hunterplugin.maniacalMonkeyNotify=false -herbiboar.colorTunnel=-16711936 -slayer.highlightOutline=false -gpu.anisotropicFilteringLevel=0 -cannon.showDoubleHitSpot=false -runelite.diaryrequirementsplugin=true -mta.telekinetic=true -runelite.screenshotplugin=true -banktags.rememberTab=true -playerindicators.drawTeamMemberNames=true -killcount.rsprofile.pY9kxn0R.deranged\ archaeologist=7 -music.muteOtherAreaNPCSounds=false -loottracker.priceType=GRAND_EXCHANGE -itemCharge.showExplorerRingCharges=true -runelite.sidebarToggleKey=122\:128 -hd.shadowResolution=RES_2048 -itemCharge.dodgyNecklace=-1 -specialcounter.dragonWarhammerThreshold=0 -itemCharge.ringOfForgingNotification=true -runelite.roofremovalplugin=true -runelite.tooltipFontType=SMALL -timetracking.rsprofile.Mhegw9dN.14651.4772=0\:1601187914 -xpTracker.onScreenDisplayModeBottom=XP_HOUR -timetracking.rsprofile.Mhegw9dN.14651.4771=0\:1601187914 -npcindicators.ignoreDeadNpcs=true -menuentryswapper.swapNpcContact=false -cannon.showInfobox=false -chatfilter.filterFriends=false -gpu.colorBlindMode=NONE -kourendLibrary.hideDarkManuscript=false -poh.showGlory=true -motherlode.showRocks=true -runelite.tithefarmplugin=true -worldhopper.showMessage=true -textrecolor.opaqueClanInfoHighlight=-65536 -itemstat.showWeight=true -implings.natureColor=-10712481 -playerindicators.drawMinimapNames=false -textrecolor.transparentGameMessageHighlight=-1109984 -grounditems.groundItemTimers=OFF -interfaceStyles.gameframe=AROUND_2010 -mta.graveyard=true -randomevents.notifyForester=false -timetracking.rsprofile.pY9kxn0R.11062.4775=177\:1633834287 -timetracking.rsprofile.pY9kxn0R.11062.4773=28\:1633834222 -timetracking.rsprofile.pY9kxn0R.11062.4774=68\:1633834254 -timetracking.rsprofile.pY9kxn0R.11062.4771=60\:1633834192 -timetracking.rsprofile.pY9kxn0R.11062.4772=60\:1633834192 -runelite.pestcontrolplugin=true -bank.rightClickBankLoot=false -runelite.attackstylesplugin=true -implings.babyColor=-5140557 -runelite.hunterplugin=true -npcindicators.highlightHull=true -chatcommands.killcount=true -implings.showyoung=NONE -raids.scoutOverlayAtBank=true -runelite.overlayBackgroundColor=-1673118414 -specialcounter.darklightThreshold=0 -fpscontrol.maxFps=50 -poison.changeHealthIcon=true -runelite.tooltipPosition=UNDER_CURSOR -runelite.herbiboarplugin=true -inventoryViewer.hiddenDefault=false -itemstat.alwaysShowBaseStats=false -zoom.compassLook=true -xpTracker.xpPanelLabel2=XP_LEFT -xpTracker.xpPanelLabel3=XP_HOUR -xpTracker.xpPanelLabel4=ACTIONS_LEFT -menuentryswapper.swapHelp=true -poison.showInfoboxes=false -npcindicators.highlightMenuNames=false -runelite.infoBoxVertical=false -grounditems.hiddenItems=Vial, Ashes, Coins, Bones, Bucket, Jug, Seaweed -xpTracker.xpPanelLabel1=XP_GAINED -loottracker.showPriceType=false -clanchat.publicChatIcons=false -fishing.onlyCurrent=false -runelite.loottrackerplugin=true -timetracking.rsprofile.pY9kxn0R.5021.7908=4\:1634604322 -hiscore.autocomplete=true -itemidentification.showHerbs=false -timers.showOverload=true -screenshot.untradeableDrop=false -kourendLibrary.hideButton=true -fishing.showIcons=true -objectindicators.borderWidth=2.0 -agility.overlayColor=-16711936 -randomevents.notifyFrog=false -menuentryswapper.swapAbyssTeleport=true -chathistory.retainChatHistory=true -inventorygrid.highlightColor=755040000 -textrecolor.transparentExamineHighlight=-16711936 -grandexchange.rsprofile.pY9kxn0R.buylimit.8778=2021-10-09T15\:12\:59.617598032Z -timetracking.timerWarningThreshold=10 -tileindicators.highlightCurrentTile=false -cooking.statTimeout=5 -corp.markDarkCore=true -menuentryswapper.swapAdmire=true -runelite.kourendlibraryplugin=true -grandexchange.rsprofile.pY9kxn0R.buylimit.8780=2021-10-04T09\:57\:16.710631246Z -menuentryswapper.swapHomePortal=HOME -cannon.showCannonSpots=true -runelite.discordplugin=true -grandexchange.rsprofile.pY9kxn0R.buylimit.8782=2021-10-04T09\:58\:58.144750860Z -friendNotes.showIcons=true -agility.agilityArenaTimer=true -playerindicators.teamMemberColor=-15503625 -barrows.brotherLocColor=-16711681 -regenmeter.showWhenNoChange=false -agility.highlightSepulchreSkilling=true -slayer.rsprofile.Mhegw9dN.streak=29 -worldmap.kourendTaskTooltips=true -timetracking.rsprofile.pY9kxn0R.6967.4771=60\:1634372311 -music.mutePrayerSounds=false -timetracking.rsprofile.pY9kxn0R.6967.4772=60\:1634372311 -playerindicators.clanMemberColor=-5635841 -timetracking.rsprofile.pY9kxn0R.6967.4773=32\:1634372311 -hd.shadowsEnabled=true -npcindicators.highlightTile=false -timetracking.rsprofile.pY9kxn0R.6967.4774=72\:1634372311 -textrecolor.opaqueClanChatGuestMessageHighlight=-16777216 -keyremapping.f1=49\:0 -keyremapping.f3=51\:0 -entityhider.hidePets=false -keyremapping.f2=50\:0 -itemidentification.showComposts=false -agility.sepulchreHighlightColor=-16711936 -deathIndicator.deathLocationPlane=-1 -smelting.statTimeout=5 -runelite.roguesdenplugin=true -rsprofile.rsprofile.AzUtpJqn.displayName=hmdl123 -statusbars.enableCounter=false -chathistory.copyToClipboard=true -fishing.trawlerNotification=true -itemCharge.showInfoboxes=false -woodcutting.showWoodcuttingStats=true -prayer.showPrayerBar=false -runelite.blastmineplugin=true -itemstat.colorBetterCapped=-1118669 -chatcommands.bhRogue=true -loginscreen.username=maia358 -nightmareZone.absorptionthreshold=50 -itemstat.relative=true -keyremapping.control=0\:128 -playerindicators.ownNameColor=-16729900 -timers.showVengeanceActive=true -runelite.gpuplugin=false -worldhopper.regionFilter=NONE -runelite.infoBoxSize=35 -runelite.worldhopperplugin=true -worldmap.fishingSpotTooltips=true -killcount.rsprofile.pY9kxn0R.agility\ arena=8 -zoom.outerLimit=0 -itemCharge.showGuthixRestDoses=true -bank.bankPinKeyboard=false -timetracking.rsprofile.Mhegw9dN.11828.4771=21\:1620357759 -interacthighlight.npcAttackHighlightColor=-1862336512 -inventorygrid.showHighlight=true -motherlode.showLootIcons=false -idlenotifier.animationidle=true -feed.includeBlogPosts=true -timetracking.timerNotification=false -animationSmoothing.smoothObjectAnimations=true -herbiboar.showStart=true -runelite.playerindicatorsplugin=true -grandexchange.rsprofile.pY9kxn0R.buylimit.8786=2021-10-09T15\:24\:54.850055203Z -timers.showTeleblock=true -timetracking.rsprofile.Mhegw9dN.12082.4771=0\:1603494117 -itemCharge.lowWarningColor=-256 -barrows.showBrotherLoc=true -interacthighlight.npcShowHover=true -grandexchange.rsprofile.pY9kxn0R.buylimit.8790=2021-10-04T09\:58\:20.320016884Z -grandexchange.rsprofile.pY9kxn0R.buylimit.8792=2021-09-12T16\:23\:08.945841087Z -runelite.flashNotification=DISABLED -agility.trapOverlay=true -boosts.displayIndicators=false -runelite.cookingplugin=true -runelite.inventoryviewerplugin=false -timetracking.estimateRelative=false -nightmareZone.absorptioncolorbelowthreshold=-65536 -chatcommands.pets=true -itemCharge.rsprofile.pY9kxn0R.explorerRing=30 -textrecolor.transparentClanChatInfo=-1 -npcUnaggroArea.notifyExpire=false -timestamp.format=[HH\:mm] -objectindicators.highlightOutline=false -timetracking.rsprofile.Mhegw9dN.11317.4771=0\:1603617013 -menuentryswapper.swapAssignment=true -menuentryswapper.shopBuy=OFF -implings.dragonColor=-2992821 -menuentryswapper.swapDepositItems=false -runelite.dailytasksplugin=true -notes.notesData= -grandexchange.rsprofile.pY9kxn0R.buylimit.1654=2020-09-29T15\:17\:15.206993Z -driftnet.tagAnnette=true -discord.showDungeonActivity=true -playerindicators.playerNamePosition=ABOVE_HEAD -menuentryswapper.swapNets=true -itemCharge.showWateringCanCharges=true -entityhider.hideNPCs=false -itemCharge.expeditiousNotification=true -loottracker.showRaidsLootValue=true -agility.lapTimeout=5 -grounditems.highlightTiles=false -zoom.compassLookPreservePitch=false -grounditems.insaneValuePrice=10000000 -party.autoOverlay=true -worldmap.dungeonTooltips=true -runelite.screenmarkerplugin=true -grandexchange.showTotal=true -timetracking.rsprofile.pY9kxn0R.11056.4771=0\:1633413652 -runelite.blastfurnaceplugin=true -runelite.pohplugin=true -rsprofile.rsprofile.wteQmrWW.type=STANDARD -regenmeter.notifyBeforeHpRegenDuration=0 -inventorygrid.showItem=true -timers.showHomeMinigameTeleports=true -keyremapping.f9=57\:0 -runelite.slayerplugin=true -bank.rightClickBankEquip=false -keyremapping.f8=56\:0 -reportButton.switchTimeFormat=TIME_12H -menuentryswapper.swapArdougneCloak=WEAR -killcount.rsprofile.pY9kxn0R.reward=1 -menuentryswapper.swapFairyRing=LAST_DESTINATION -slayer.superiornotification=true -keyremapping.f5=53\:0 -keyremapping.f4=52\:0 -keyremapping.f7=55\:0 -runelite.chathistoryplugin=true -keyremapping.f6=54\:0 -motherlode.statTimeout=5 -slayer.rsprofile.Mhegw9dN.points=138 -animationSmoothing.smoothPlayerAnimations=true -runepouch.fontcolor=-256 -runenergy.replaceOrbText=false -stretchedmode.keepAspectRatio=false -slayer.rsprofile.pY9kxn0R.initialAmount=129 -loottracker.pvpKillChatMessage=false -itemCharge.showBasketCharges=true -mousehighlight.disableSpellbooktooltip=false -dpscounter.autoreset=false -chatfilter.maxRepeatedPublicChats=0 -wintertodt.notifyFullInv=true -timetracking.rsprofile.pY9kxn0R.12851.4771=0\:1634385984 -implings.spawnColor=-1 -entityhider.hideLocalPlayer2D=false -zoom.controlFunction=NONE -timetracking.rsprofile.pY9kxn0R.4922.4771=0\:1634625212 -xpdrop.magePrayerColor=-15368019 -npcUnaggroArea.npcUnaggroAlwaysActive=false -runelite.feedplugin=true -timetracking.rsprofile.pY9kxn0R.4922.4774=60\:1634625212 -timetracking.rsprofile.pY9kxn0R.4922.4775=72\:1634625212 -blastmine.showWarningOverlay=true -timetracking.rsprofile.pY9kxn0R.4922.4772=63\:1634625212 -timetracking.rsprofile.pY9kxn0R.4922.4773=60\:1634625212 -driftnet.annetteTagColor=-65536 -implings.shownature=NONE -interacthighlight.npcInteractHighlightColor=-1862336512 -clanchat.chatsData=lib2105,osrs tb -idlenotifier.logoutidle=true -runelite.runepouchplugin=true -runelite.clientBounds=4240\:214\:1674\:1025 -playerindicators.drawNonClanMemberNames=false -screenshot.friendDeath=false -npcindicators.showRespawnTimer=false -itemCharge.veryLowWarning=1 -runelite.notificationTray=true -hiscore.playerOption=true -loginscreen.pasteenabled=false -dpscounter.autopause=false -zoom.preserveYaw=false -inventorygrid.showGrid=true -menuentryswapper.swapTan=false -discord.showRegionsActivity=true -boosts.displayBoosts=BOTH -npcindicators.npcColor=-16711681 -timers.showStamina=true -nightmareZone.zappernotification=false -itemidentification.showTablets=false -grounditems.highValueColor=-27136 -driftnet.timeoutDelay=60 -runelite.animationsmoothingplugin=true -implings.showearth=NONE -runelite.regenmeterplugin=true -worldmap.ancientSpellbookIcon=true -discord.actionTimeout=5 -textrecolor.opaqueClanChatInfo=-16777216 -itemCharge.showRingOfForgingCount=true -timetracking.rsprofile.pY9kxn0R.birdhouse.1626=21\:1632715128 -barbarianAssault.showTimer=true -timetracking.rsprofile.pY9kxn0R.birdhouse.1629=21\:1632715060 -timetracking.rsprofile.pY9kxn0R.birdhouse.1628=21\:1632715071 -specialcounter.bandosGodswordThreshold=0 -xpdrop.rangePrayerColor=-15368019 -timetracking.rsprofile.pY9kxn0R.birdhouse.1627=21\:1632715159 -timetracking.rsprofile.pY9kxn0R.12594.4771=21\:1634385947 -worldmap.transportationTooltips=true -grounditems.lowValueColor=-10046721 -worldmap.agilityShortcutTooltips=true -timetracking.rsprofile.Mhegw9dN.12596.4771=0\:1603800617 -grandexchange.rsprofile.pY9kxn0R.buylimit.8013=2021-10-03T11\:33\:48.134239541Z -screenshot.boss=false -runecraft.showBody=true -dailytaskindicators.showSand=false -gpu.antiAliasingMode=DISABLED -clanchat.joinLeaveTimeout=20 -specialcounter.thresholdNotification=false -hd.tzhaarHD=true -antiDrag.disableOnCtrl=false -implings.showessence=NONE -agility.lapsPerHour=true -itemstat.theoretical=false -agility.highlightStick=true -idlenotifier.lowEnergy=100 -kourendLibrary.hideDuplicateBook=true -timetracking.rsprofile.AzUtpJqn.autoweed=0 -prayer.prayerIndicator=false -playerindicators.clanchatMenuIcons=true -itemidentification.showSeeds=true -implings.eclecticColor=-7234747 -timetracking.rsprofile.pY9kxn0R.10288.4771=0\:1634352375 -hd.brightness2=20 -gpu.drawDistance=25 -blastfurnace.showBarDispenser=false -fishing.aerialOverlayColor=-16711936 -combatlevel.showPreciseCombatLevel=true -menuentryswapper.swapTrade=true -teamCapes.clanChatMemberCounter=false -zoom.ignoreExamine=false -itemidentification.textColor=-1 -idlenotifier.prayer=0 -woodcutting.statTimeout=5 -grounditems.highlightedColor=-5635841 -runelite.usernameInTitle=true -chatnotification.notifyOnTrade=false -clanchat.clanChatShowJoinLeave=false -xpTracker.pauseSkillAfter=0 -timetracking.farmingContractInfoBox=true -prayer.replaceOrbText=false -grounditems.mediumValuePrice=100000 -timetracking.rsprofile.Mhegw9dN.13622.4771=0\:1603622277 -slayer.statTimeout=5 -poh.showExitPortal=true -itemCharge.bindingNotification=true -implings.showeclectic=NONE -screenshot.pets=true -killcount.rsprofile.Mhegw9dN.deranged\ archaeologist=7 -interfaceStyles.menuAlpha=255 -deathIndicator.deathOnWorldMap=true -slayer.taskCommand=true -runelite.idlenotifierplugin=true -fishing.showMinnowOverlay=true -itemidentification.showSacks=false -menuentryswapper.swapTravel=true -clanchat.clanChatIcons=true -inventorygrid.gridColor=771751935 -minimap.clan=-5635906 -worldmap.lunarSpellbookIcon=true -pyramidplunder.highlightSpeartraps=true -rsprofile.rsprofile.Mhegw9dN.displayName=Maia358 -hunterplugin.hexColorFullTrap=-16711936 -npcUnaggroArea.npcUnaggroShowTimer=true -minimap.npc=-256 -timetracking.rsprofile.pY9kxn0R.11573.4771=0\:1634372400 -minimap.team=-15503625 -worldmap.agilityCourseRooftopIcon=true -inventorytags.tagFill=false -textrecolor.opaquePrivateMessageSentHighlight=-16767101 -barrows.showChestValue=true -minimap.hideMinimap=false -worldmap.rareTreeTooltips=true -xpupdater.wiseoldman=false -itemCharge.showFungicideCharges=true -xpglobes.Progress\ arc\ color=-14336 -interfaceStyles.alwaysStack=false -woodcutting.showRespawnTimers=true -poh.showMagicTravel=true -loginscreen.loginScreen=OFF -discord.showCityActivity=true -implings.essenceColor=-14657190 -timers.showArceuusCooldown=false -pyramidplunder.highlightDoorsColor=-16711936 -itemidentification.showBars=false -xpglobes.hideMaxed=false -idlenotifier.highEnergy=0 -opponentinfo.showOpponentsInMenu=false -zoom.invertPitch=false -timers.showStaffOfTheDead=true -runelite.blockExtraMouseButtons=true -runelite.interfacestylesplugin=false -timers.showAbyssalSireStun=true -grandexchange.rsprofile.pY9kxn0R.buylimit.6979=2021-10-06T06\:44\:28.189702003Z -slayer.highlightTile=false -attackIndicator.removeWarnedStyles=false -xpupdater.cml=false -grandexchange.rsprofile.Mhegw9dN.buylimit.5982=2020-10-03T15\:45\:44.177715Z -tileindicators.highlightDestinationTile=true -fishing.showTiles=true -zoom.ctrlZoomValue=512 -runecraft.showClickBox=true -inventoryViewer.hideIfInventoryActive=false -timetracking.rsprofile.Mhegw9dN.11058.4771=0\:1601806006 -kourendLibrary.hideVarlamoreEnvoy=false -slayer.rsprofile.pY9kxn0R.taskLocation= -hd.groundBlending=true -itemstat.geStats=true -clanchat.showIgnoresColor=-65536 -chatcommands.clearSingleWord=87\:128 -timetracking.rsprofile.Mhegw9dN.10548.4773=0\:1603606957 -timetracking.rsprofile.Mhegw9dN.10548.4774=0\:1603606957 -timetracking.rsprofile.Mhegw9dN.10548.4775=0\:1603606957 -itemstat.equipmentStats=true -idlenotifier.timeout=5000 -runelite.runecraftplugin=true -menuentryswapper.swapBoxTrap=true -timetracking.rsprofile.pY9kxn0R.10290.4771=0\:1634603852 -itemstat.consumableStats=true -screenshot.levels=true -mta.enchantment=true -itemCharge.recoilNotification=false -nightmareZone.overloadnotification=true -timetracking.rsprofile.pY9kxn0R.12083.4775=177\:1634028710 -grandexchange.rsprofile.pY9kxn0R.buylimit.1273=2021-09-20T06\:17\:44.963162641Z -runelite.nightmarezoneplugin=true -runelite.notificationFlashColor=1191116800 -timetracking.rsprofile.wteQmrWW.13106.4771=0\:1594013062 -itemprices.showHAValue=true -virtuallevels.virtualTotalLevel=true -playerindicators.drawFriendNames=true -herbiboar.colorTrail=-1 -timetracking.rsprofile.pY9kxn0R.12083.4774=72\:1634028710 -timetracking.rsprofile.pY9kxn0R.12083.4773=32\:1634028710 -timetracking.rsprofile.pY9kxn0R.12083.4772=62\:1634028710 -timetracking.rsprofile.pY9kxn0R.12083.4771=60\:1634028710 -bank.seedVaultValue=true -raids.ccDisplay=false -tearsofguthix.showGreenTearsTimer=true -motherlode.showGemsFound=true -runelite.uiWindowOpacity=100 -raids.scoutOverlay=true -runecraft.showEarth=true -hunterplugin.hexColorTransTrap=-14336 -discord.elapsedTime=ACTIVITY -attackIndicator.hideAutoRetaliate=false -statusbars.enableSkillIcon=true -entityhider.hideAttackers=false -rsprofile.rsprofile.pY9kxn0R.displayName=Maia358 -menuentryswapper.swapPay=true -roofremoval.removeDestination=true -hd.waterEffects=ALL -inventorytags.groupColor1=-65536 -inventorytags.groupColor2=-16711936 -textrecolor.opaqueClanChatMessageHighlight=-16777216 -inventorytags.groupColor3=-16776961 -inventorytags.groupColor4=-65281 -opponentinfo.lookupOnInteraction=false -infoboxoverlay.orient_InfoBoxOverlay=HORIZONTAL -party.stats=true -pyramidplunder.hideTimer=true -slayer.rsprofile.Mhegw9dN.taskLocation=Taverley Dungeon -grounditems.mediumValueColor=-6684775 -barbarianAssault.waveTimes=true -inventorytags.groupColor5=-256 -inventorytags.groupColor6=-16711681 -grounditems.onlyShowLoot=false -timetracking.rsprofile.Mhegw9dN.12854.4771=0\:1603800655 -loginscreen.showLoginFire=true -zoom.inner=false -dailytaskindicators.showFlax=false -prayer.showPrayerTooltip=true -chatnotification.notifyOnBroadcast=false -minimap.item=-65536 -menuentryswapper.swapExchange=true -clanchat.targetMode=true -grandexchange.rsprofile.pY9kxn0R.buylimit.225=2021-10-04T15\:14\:00.568250767Z -grandexchange.rsprofile.pY9kxn0R.buylimit.223=2021-10-04T15\:13\:41.648293597Z -screenshot.baHighGamble=false -grandexchange.rsprofile.pY9kxn0R.buylimit.3420=2021-10-04T10\:01\:20.932037852Z -grandexchange.rsprofile.pY9kxn0R.buylimit.251=2021-10-10T13\:09\:16.913117769Z -worldhopper.previousKey=37\:192 -grounditems.showMenuItemQuantities=true -deathIndicator.deathInfoBox=true -menuentryswapper.swapKaramjaGloves=WEAR -runecraft.showRifts=true -feed.includeOsrsNews=true -worldhopper.nextKey=39\:192 -motherlode.showDepositsLeft=true -chatcommands.clearEntireChatBox=8\:128 -playerindicators.drawPlayerTiles=false -grounditems.priceDisplayMode=BOTH -runelite.friendnotesplugin=true -inventorytags.showTagOutline=true -clanchat.showIgnores=true -menuentryswapper.swapRadasBlessing=EQUIP -screenshot.duels=false -discord.showMinigameActivity=true -itemstat.colorBetterSomecapped=-6492621 -menuentryswapper.swapGEAbort=false -npcindicators.outlineFeather=0 -runelite.banktagsplugin=true -idlenotifier.movementidle=false -runelite.minimapplugin=true -implings.showCrystal=NONE -wintertodt.notifyBrazierDamage=INTERRUPT -rsprofile.loginSalt=RYOR9IxEUu8jjLIvnsRE -tithefarmplugin.hexColorUnwatered=-17664 -banktags.removeTabSeparators=false -defaultworld.defaultWorld=0 -slayer.rsprofile.pY9kxn0R.streak=74 -teamCapes.friendsChatMemberCounter=false -textrecolor.transparentClanChatInfoHighlight=-65536 -runelite.gameSize=765x503 -discord.showBossActivity=true -friendlist.showWorldOnLogin=false -hiscore.bountylookup=false -raids.scoutOverlayInRaid=false -slayer.highlightHull=false -worldmap.farmingpatchTooltips=true -kourendLibrary.alwaysShowVarlamoreEnvoy=false -fishing.showFishingStats=true -randomevents.notifyDunce=false -blastmine.showOreOverlay=true -worldhopper.displayPing=false -timetracking.rsprofile.Mhegw9dN.4922.7911=0\:1601887766 -poh.showBurner=true -timetracking.rsprofile.Mhegw9dN.4922.7910=0\:1601887766 -agility.highlightShortcuts=true -runelite.prayerplugin=true -itemCharge.amuletOfBounty=-1 -hd.maxDynamicLights=SOME -rsprofile.rsprofile.Mhegw9dN.type=STANDARD -bank.showExact=false -itemidentification.showOres=false -playerindicators.friendNameColor=-16725933 -npcindicators.highlightSouthWestTile=false -interacthighlight.objectShowInteract=true -dailytaskindicators.showArrows=false -timetracking.preferSoonest=false -timetracking.rsprofile.pY9kxn0R.12340.4771=0\:1601696228 -menuentryswapper.swapDarkMage=true -runelite.accountplugin=true -agility.showLapCount=true -deathIndicator.deathLocationX=-1 -zoom.zoomIncrement=25 -deathIndicator.deathLocationY=-1 -itemCharge.lowWarning=2 -xpTracker.onScreenDisplayMode=XP_GAINED -pyramidplunder.highlightedChestFloor=9 -hd.drawDistance=90 -implings.showgourmet=NONE -inventorytags.displayMode=OUTLINE -hd.anisotropicFilteringLevel=4 -itemidentification.showLogs=false -runelite.agilityplugin=true -chatcommands.sw=true -runelite.deathindicatorplugin=true -runelite.miningplugin=true -fishing.minnowsOverlayColor=-65536 -defaultworld.lastWorld=448 -motherlode.showSack=true -runelite.grandexchangeplugin=true -xpTracker.logoutPausing=false -timers.showArceuus=true -runelite.puzzlesolverplugin=true -slayer.rsprofile.pY9kxn0R.amount=129 -loottracker.syncPanel=true -raids.enableLayoutWhitelist=false -menuentryswapper.swapHouseAdvertisement=VIEW -zoom.middleClickMenu=false -agility.showClickboxes=true -runelite.chatchannelplugin=true -worldmap.agilityCourseTooltips=true -raids.enableRotationWhitelist=false -keyremapping.up=87\:0 -worldhopper.menuOption=true -chatnotification.notifyOnHighlight=false -gpu.useComputeShaders=true -timetracking.rsprofile.Mhegw9dN.4922.7909=0\:1601887766 -timers.showAntipoison=true -specialcounter.arclightThreshold=0 -runelite.uiEnableCustomChrome=true -timetracking.rsprofile.Mhegw9dN.4922.7906=0\:1601887766 -timetracking.rsprofile.Mhegw9dN.4922.7905=0\:1601887766 -antiDrag.dragDelay=30 -timetracking.rsprofile.Mhegw9dN.4922.7904=0\:1601887766 -regenmeter.showHitpoints=true -wintertodt.roundNotification=5 -itemprices.showWhileAlching=true -menuentryswapper.swapPortalNexus=false -menuentryswapper.swapPrivate=false -textrecolor.transparentPrivateMessageSentHighlight=-1 -timetracking.rsprofile.Mhegw9dN.11062.4775=0\:1603617420 -runecraft.showMind=true -grounditems.showLootbeamTier=HIGH -banktags.position=0 -nightmareZone.ultimateforcenotification=false -clanchat.guestClanChatShowJoinLeave=false -xpTracker.intermediateLevelMarkers=false -textrecolor.transparentClanInfoHighlight=-65536 -timetracking.rsprofile.Mhegw9dN.11062.4773=0\:1603617420 -timetracking.rsprofile.Mhegw9dN.11062.4774=0\:1603617420 -driftnet.countColor=-1 -timetracking.rsprofile.Mhegw9dN.11062.4771=0\:1603617420 -npcindicators.drawNames=false -randomevents.notifySandwich=false -timetracking.rsprofile.Mhegw9dN.14391.4772=0\:1601798659 -timetracking.rsprofile.Mhegw9dN.14391.4771=0\:1601798659 -timetracking.rsprofile.Mhegw9dN.14391.4774=0\:1601798659 -timetracking.rsprofile.Mhegw9dN.14391.4773=33\:1601798687 -stretchedmode.scalingFactor=50 -interacthighlight.npcHoverHighlightColor=-1862271232 -statusbars.enableRestorationBars=true -runelite.infoBoxTextOutline=false -runelite.rememberScreenBounds=true -implings.gourmetColor=-5667998 -killcount.rsprofile.pY9kxn0R.hespori=13 -chatnotification.notifyOnDuel=false -grandexchange.rsprofile.pY9kxn0R.buylimit.5308=2021-09-21T04\:23\:58.644326394Z -xpTracker.progressBarLabel=PERCENTAGE -menuentryswapper.swapQuickleave=false -agility.agilityArenaNotifier=true -runelite.externalPlugins=117hd -itemCharge.showAbyssalBraceletCharges=true -barrows.showPuzzleAnswer=true -itemprices.showAlchProfit=false -hd.defaultSkyColor=DEFAULT -blastfurnace.showCofferTime=true -raids.raidsTimer=true -puzzlesolver.displaySolution=true -groundMarker.borderWidth=2.0 -prayer.prayerBarHideIfNonCombat=false -hd.npcLights=true -runelite.corpplugin=true -textrecolor.opaqueClanChatInfoHighlight=-65536 -runelite.skillcalculatorplugin=true -deathIndicator.deathWorld=-1 -keyremapping.cameraRemap=true -runelite.defaultworldplugin=true -fpscontrol.drawFps=true -fpscontrol.limitFps=false -timetracking.rsprofile.pY9kxn0R.10548.4771=60\:1633834708 -timetracking.rsprofile.pY9kxn0R.10548.4772=60\:1633834708 -randomevents.notifyAll=false -timetracking.rsprofile.pY9kxn0R.10548.4773=29\:1633834800 -keyremapping.space=32\:0 -timetracking.rsprofile.pY9kxn0R.10548.4774=68\:1633834887 -timetracking.rsprofile.pY9kxn0R.10548.4775=181\:1633834929 -zoom.relaxCameraPitch=false -prayer.prayerFlickLocation=NONE -grounditems.doubleTapDelay=250 -implings.luckyColor=-10090651 -runelite.panelToggleKey=123\:128 -itemCharge.showPotionDoseCount=false -runelite.reportbuttonplugin=true -runelite.warningOnExit=LOGGED_IN -chatnotification.highlightOwnName=true -agility.highlightMarks=true -runecraft.showBlood=true -itemCharge.bindingNecklace=-1 -timers.showMagicImbue=true -wiki.leftClickSearch=false -hd.uiScalingMode=LINEAR -grounditems.insaneValueColor=-39246 -hd.brightness=set -runelite.motherlodeplugin=true -deathIndicator.deathHintArrow=true -runelite.menuEntryShift=true -grandexchange.enableGeLimits=true -hiscore.menuOption=true -clanchat.joinLeaveRank=UNRANKED -worldmap.scrollIcon=true -poh.showDigsitePendant=true -slayer.rsprofile.pY9kxn0R.taskName=Wyrms -tileindicators.highlightHoveredColor=0 -herbiboar.showTunnel=true -menuentryswapper.swapTeleToPoh=false -minimap.player=-1 -pyramidplunder.highlightContainersColor=-256 -randomevents.notifyJekyll=false -itemidentification.showPotions=false -runelite.dpscounterplugin=false -groundMarker.showClear=false -fishing.showNames=false -menuentryswapper.swapBones=false -agility.trapHighlight=-65536 -slayer.rsprofile.Mhegw9dN.expeditious=0 -implings.ninjaColor=-12106165 -poh.showPortalNexus=true -textrecolor.transparentClanGuestInfoHighlight=-65536 -xpupdater.templeosrs=false -grandexchange.rsprofile.pY9kxn0R.buylimit.3142=2020-10-04T11\:53\:23.947818Z -timers.showPrayerEnhance=true -runelite.notificationSound=NATIVE -screenshot.kingdom=true -grandexchange.rsprofile.pY9kxn0R.buylimit.888=2021-09-07T12\:22\:35.539003896Z -grandexchange.rsprofile.pY9kxn0R.buylimit.10474=2021-10-12T12\:26\:17.236509839Z -metronome.tockVolume=0 -slayer.infobox=true -itemidentification.identificationType=SHORT -entityhider.hidePlayers2D=true -playerindicators.drawClanChatMemberNames=true -tithefarmplugin.hexColorWatered=-16737793 -metronome.tickCount=1 -runelite.implingsplugin=true -worldmap.rareTreeIcon=true -herbiboar.showObject=true -boosts.displayNextBuffChange=BOOSTED -timetracking.birdHouseNotification=false -runepouch.runePouchOverlayMode=BOTH -runelite.mousehighlightplugin=true -music.areaSoundEffectVolume=1 -combatlevel.showLevelsUntil=true -menuentryswapper.swapBirdhouseEmpty=true -idlenotifier.interactionidle=true -wintertodt.damageNotificationColor=-16711681 -hd.expandShadowDraw=false -cluescroll.displayHintArrows=true -implings.showdragon=HIGHLIGHT -antiDrag.onShiftOnly=true -itemCharge.showTeleportCharges=true -lowmemory.hideLowerPlanes=false -implings.showlucky=HIGHLIGHT -runecraft.showCosmic=true -runelite.cluescrollplugin=true -menuentryswapper.swapChase=true -fishing.trawlerTimer=true -pyramidplunder.highlightedSarcophagusFloor=9 -menuentryswapper.swapBattlestaves=false -clanchat.recentChats=true -xpTracker.prioritizeRecentXpSkills=false -implings.showspawn=false -grounditems.itemHighlightMode=BOTH -nightmareZone.absorptioncoloroverthreshold=-256 -timetracking.rsprofile.pY9kxn0R.9265.4771=0\:1634297391 -timetracking.rsprofile.wteQmrWW.autoweed=0 -keyremapping.down=83\:0 -itemCharge.showSackCharges=true -timers.showGodWarsAltar=true -timetracking.rsprofile.pY9kxn0R.13106.4771=0\:1634028798 -teamCapes.teamCapesOverlay=false -screenshot.clanDeath=false -entityhider.hideIgnores=false -runecraft.showChaos=true -loginscreen.syncusername=true -runelite.bankplugin=true -npcUnaggroArea.location=1234\:3735\:0 -npcUnaggroArea.npcUnaggroShowAreaLines=false -runecraft.showWater=true -clanchat.clanTabChat=false -runelite.useWikiItemPrices=true -runelite.fpsplugin=false -chatcommands.lp=true -itemCharge.showImpCharges=true -npcindicators.drawMinimapNames=false -statusbars.leftBarMode=HITPOINTS -menuentryswapper.swapTeleportSpell=false -runelite.itemchargeplugin=true -runelite.profileMigrationDone=1 -dpscounter.bossDamage=false -itemidentification.showTeleportScrolls=false -randomevents.notifyGravedigger=false -interacthighlight.outlineFeather=4 -idlenotifier.hitpoints=0 -menuentryswapper.swapTeleportItem=false -cannon.highlightDoubleHitColor=-65536 -timetracking.timeFormatMode=ABSOLUTE_24H -poh.showAltar=true -objectindicators.outlineFeather=0 -playerindicators.drawOwnName=false -agility.stickHighlightColor=-65536 -xpglobes.Progress\ orb\ background\ color=2139127936 -runelite.loginscreenplugin=true -bank.searchKeybind=70\:128 -menuentryswapper.swapDecant=false -discord.showRaidingActivity=true -npcUnaggroArea.npcAggroAreaColor=1694498560 -randomevents.notifyGenie=false -xpglobes.alignOrbsVertically=false -hd.atmosphericLighting=true -runelite.npcaggroareaplugin=true -itemCharge.slaughterNotification=true -runelite.itemstatplugin=true -timetracking.rsprofile.Mhegw9dN.autoweed=0 -nightmareZone.powersurgenotification=false -timers.showCharge=true -tileindicators.currentTileBorderWidth=2.0 -timetracking.rsprofile.pY9kxn0R.6967.7904=0\:1634372311 -xpTracker.hideMaxed=false -hd.colorBlindMode=NONE -runelite.containInScreen2=RESIZING -textrecolor.opaquePublicChatHighlight=-16777216 -runelite.notificationGameMessage=false -interacthighlight.objectShowHover=true -menuentryswapper.swapCaptainKhaled=false -grandexchange.showExact=false -raids.pointsMessage=true -itemCharge.rsprofile.Mhegw9dN.explorerRing=30 -keyremapping.fkeyRemap=false -grounditems.lowValuePrice=20000 -randomevents.notifyBeekeeper=false -stretchedmode.increasedPerformance=false -agility.highlightSepulchreObstacles=true -menuentryswapper.swapContract=true -xpTracker.resetSkillRateAfter=0 -hd.contrast=DEFAULT -keyremapping.right=68\:0 -grandexchange.showActivelyTradedPrice=true -customcursor.cursorStyle=RS3_GOLD -puzzlesolver.drawDots=false -party.messages=true -worldhopper.ping=true -puzzlesolver.displayRemainingMoves=true -menuentryswapper.swapRowboatDive=false -playerindicators.clanMenuIcons=true -timetracking.rsprofile.pY9kxn0R.11828.4771=21\:1634372354 -chatfilter.filterType=CENSOR_WORDS -agility.portalsHighlight=-65281 -bank.showHA=false -herbiboar.colorGameObject=-16711681 -discord.hideElapsedTime=false -poh.showJewelleryBox=true -grandexchange.rsprofile.pY9kxn0R.buylimit.8435=2021-10-04T10\:00\:55.144839068Z -hd.antiAliasingMode=MSAA_4 -cannon.lowWarningThreshold=0 -chatcommands.pb=true -entityhider.hideFriends=false -barbarianAssault.showHealerBars=true -herbiboar.colorStart=-16711681 -timetracking.rsprofile.pY9kxn0R.12082.4771=0\:1634386725 -textrecolor.opaqueExamineHighlight=-16776961 -menuentryswapper.swapHardWoodGroveParcel=true -banktags.preventTagTabDrags=false -itemidentification.showSaplings=true -timetracking.rsprofile.pY9kxn0R.6711.7904=0\:1600078718 -timetracking.rsprofile.pY9kxn0R.11570.4771=0\:1631003309 -runelite.notesplugin=true -textrecolor.transparentClanChatMessageHighlight=-1 -wintertodt.notifyEmptyInv=true -objectindicators.highlightHull=true -chatcommands.qp=true -clanchat.confirmKicks=false -bank.showGE=true -kingdomofmiscellania.approvalThreshold=100 -runelite.poisonplugin=true -tearsofguthix.greenTearsColor=1677786880 -timetracking.rsprofile.pY9kxn0R.11321.4771=72\:1634026214 -grandexchange.rsprofile.pY9kxn0R.buylimit.8423=2021-10-04T09\:59\:51.563630331Z -menuentryswapper.swapEssenceMineTeleport=false -minimap.friend=-16711936 -playerindicators.clanChatMemberColor=-14413909 -itemidentification.showImplingJars=false -hd.shadowDistance=DISTANCE_30 -timers.showFreezes=true -groundMarker.rememberTileColors=false -pyramidplunder.timerLowWarning=30 diff --git a/.xinitrc b/.xinitrc index 4a098ae..0daac4b 100644 --- a/.xinitrc +++ b/.xinitrc @@ -48,6 +48,6 @@ if [ "$HOST" == "archmetabox" ] ; then fi # start my trusty window manager -exec xmonad --recompile -exec xmonad --replace +#exec xmonad --recompile +#exec xmonad --replace diff --git a/.xprofile b/.xprofile index 9334f0f..daae617 100644 --- a/.xprofile +++ b/.xprofile @@ -17,5 +17,5 @@ xsetroot -cursor_name left_ptr /home/solomon/.screenlayout/normal.sh # start wm -xmonad --recompile -xmonad --replace +#xmonad --recompile +#xmonad --replace